What is the difference between
public static void Main()
and
private static void Main()
in a C# console appli
For example when you want add entry point that can call from outside a class or assembly you should set public but if it is not importatnt use private.
public
private