Inconsistent accessibility error with the following c# code. Why?

your “Interface1” isn’t public..

public interface Interface1<T>
{
    bool IsDataValid();
    /* Other interfaces */
}

Leave a Comment