What is the difference between
public static void Main()
and
private static void Main()
in a C# console appli
Aside from the normal public and private access modifier functionality, nothing. Both are valid entry points.
See: Why is the entry point allowed to be private? and Why is Main method private?