What are the naming conventions defined by .Net? I haven't had a chance to look at the API but from the code below im assuming that all methods follow X or XxxxXxxx. Also can the Main thread of execution take arguements? Thanks.
Code:using System; class Hello{ static void Main() { Console.WriteLine("Hello, World"); } }


Reply With Quote

