반응형
// A skeleton of a C# program
using System;
namespace YourNamespace
{
class YourClass
{
}
struct YourStruct
{
}
interface IYourInterface
{
}
delegate int YourDelegate();
enum YourEnum
{
}
namespace YourNestedNamespace
{
struct YourStruct
{
}
}
class YourMainClass
{
static void Main(string[] args)
{
//Your program starts here...
}
}
}
By Microsoft.MSDN :: .NET Guide Docs
반응형
'C# .NET' 카테고리의 다른 글
[C#][Network][Thread] C#에서 쓰레드를 이용한 에코서버의 기본구조 (0) | 2019.03.18 |
---|---|
[C#] 연산자 목록(Operators) (0) | 2019.03.18 |
[C#] .NET Configuration file :: App.config (0) | 2019.03.18 |