egne pre formateret summary - comments
sådan ser det ud når jeg opretter et projekt....using System;
namespace chap4Exercises
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Class1
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
}
}
}
sådan ønsker jeg det...
using System;
namespace chap4Exercises
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
}
}
}
Kan jeg sætte dette op i Visual Studio og hvordan?
