namespace AccessSpecifiers
protected internal string name = "Shantosh Kumar";
protected internal void Msg(string msg)
Console.WriteLine("Hello " + msg);
public static void Main(string[] args)
InternalTest internalTest = new InternalTest();
Console.WriteLine("Hello " + internalTest.name);
internalTest.Msg("Peter Decosta");