when we use Internal Keyword in c#

InterNal Type or Members accessible only  within  files in the same  assembly .

Ex:
public class BaseClass 
{
    // Only accessible within the same assembly
    internal static int x = 0;
}

Comments