C Sharp

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>
namespace <your optional namespace>
class <your class>
{
    public static void Main()
    {
    }
}