If internal class can only be accessed by anywhere in same assembly and it can't be accessed outside the assembly how Main() method is called by CLR?
using System;
namespace test
{
internal class Program {
public static void Main(String[] args){
Console.WriteLine("Testing Internal Modifier!!");
Console.ReadLine();
}
}
}
Thanks.