欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# 程序通用结构

程序员文章站 2022-03-05 16:14:54
c# 程序由一个或多个文件组成。 每个文件均包含零个或多个命名空间。 一个命名空间包含类、结构、接口、枚举、委托等类型或其他命名空间。 以下示例是包含所有这些元素的 c# 程序主干。// a skel...

c# 程序由一个或多个文件组成。 每个文件均包含零个或多个命名空间。 一个命名空间包含类、结构、接口、枚举、委托等类型或其他命名空间。 以下示例是包含所有这些元素的 c# 程序主干。

// a skeleton of a c# program
using system;

// your program starts here:
console.writeline("hello world!");

namespace yournamespace
{
    class yourclass
    {
    }

    struct yourstruct
    {
    }

    interface iyourinterface
    {
    }

    delegate int yourdelegate();

    enum yourenum
    {
    }

    namespace yournestednamespace
    {
        struct yourstruct
        {
        }
    }
}


前面的示例使用*语句作为程序的入口点。 c# 9 中添加了此功能。 在 c# 9 之前,入口点是名为 main 的静态方法,

如以下示例所示:

// 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 program
    {
        static void main(string[] args)
        {
            //your program starts here...
            console.writeline("hello world!");
        }
    }
}

到此这篇关于c# 程序通用结构的文章就介绍到这了,更多相关c# 程序通用结构内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: C# 程序 结构