Saturday, January 30, 2010

Skeleton Code

Let's quickly look at what can be viewed as skeleton code for most any C# application, code that illustrates a basic outline for a simple, no-frills C# application. You might want type this into a file and save it to use as a template in the future. Notice that the angle brackets denote where you need to supply information.
using 
namespace 
class 
{
    public static void Main()
    {
    }
}

No comments:

Post a Comment