Program "" has more than one entry point defined: 'Class.Main()'. Compile with /main to specify the type that contains the entry point.
I have searched and searched, and have only found the syntax to specify the class of the entry point, (/main:class) but not the type. Can anyone help?
static void Main()
{
}
static void Main(string[] args)
{
}