//******************************************//
Three are three ways to define Main() in C#
//******************************************//
//int return type,array of strings as the argument
static int Main( string[] args)
{
}
//No return type,No argument
static void Main( )
{
}
//int return type,no argument
static int Main()
{
}
Are you young in Programming!!!! don't do
13 years ago
No comments:
Post a Comment