现在的位置: 首页 > 综合 > 正文

A skeleton of a C# program

2014年02月04日 ⁄ 综合 ⁄ 共 259字 ⁄ 字号 评论关闭
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...
        }
    }
}

抱歉!评论已关闭.