CodeEntryPointMethod 类

定义

表示可执行文件的入口点方法。

public class CodeEntryPointMethod : System.CodeDom.CodeMemberMethod
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeEntryPointMethod : System.CodeDom.CodeMemberMethod
继承
属性

示例

此示例演示如何使用 CodeEntryPointMethod 指示启动程序执行的方法。

// Builds a Hello World Program Graph using System.CodeDom objects
public static CodeCompileUnit BuildHelloWorldGraph()
{
    // Create a new CodeCompileUnit to contain the program graph
    CodeCompileUnit CompileUnit = new CodeCompileUnit();

    // Declare a new namespace object and name it
    CodeNamespace Samples = new CodeNamespace("Samples");
    // Add the namespace object to the compile unit
    CompileUnit.Namespaces.Add( Samples );

    // Add a new namespace import for the System namespace
    Samples.Imports.Add( new CodeNamespaceImport("System") );

    // Declare a new type object and name it
    CodeTypeDeclaration Class1 = new CodeTypeDeclaration("Class1");
    // Add the new type to the namespace object's type collection
    Samples.Types.Add(Class1);

    // Declare a new code entry point method
    CodeEntryPointMethod Start = new CodeEntryPointMethod();
    // Create a new method invoke expression
    CodeMethodInvokeExpression cs1 = new CodeMethodInvokeExpression(
        // Call the System.Console.WriteLine method
        new CodeTypeReferenceExpression("System.Console"), "WriteLine",
        // Pass a primitive string parameter to the WriteLine method
        new CodePrimitiveExpression("Hello World!") );
    // Add the new method code statement
    Start.Statements.Add(new CodeExpressionStatement(cs1));

    // Add the code entry point method to the type's members collection
    Class1.Members.Add( Start );

    return CompileUnit;

注解

CodeEntryPointMethod 表示 CodeMemberMethod 可执行文件的入口点方法的 。

构造函数

CodeEntryPointMethod()

初始化 CodeEntryPointMethod 类的新实例。

属性

Attributes

获取或设置成员的特性。

(继承自 CodeTypeMember)
Comments

获取类型成员的注释集合。

(继承自 CodeTypeMember)
CustomAttributes

获取或设置成员的自定义特性。

(继承自 CodeTypeMember)
EndDirectives

获取成员的结束指令。

(继承自 CodeTypeMember)
ImplementationTypes

获取由该方法实现的接口的数据类型,除非它是一个私有方法实现(这由 PrivateImplementationType 属性来指示)。

(继承自 CodeMemberMethod)
LinePragma

获取或设置类型成员语句所在的行。

(继承自 CodeTypeMember)
Name

获取或设置成员名。

(继承自 CodeTypeMember)
Parameters

获取方法的参数声明。

(继承自 CodeMemberMethod)
PrivateImplementationType

获取或设置由此方法(如果是私有的)为其实现方法的接口的数据类型(如果有)。

(继承自 CodeMemberMethod)
ReturnType

获取或设置该方法的返回值的数据类型。

(继承自 CodeMemberMethod)
ReturnTypeCustomAttributes

获取该方法的返回类型的自定义特性。

(继承自 CodeMemberMethod)
StartDirectives

获取成员的开始指令。

(继承自 CodeTypeMember)
Statements

获取该方法内的语句。

(继承自 CodeMemberMethod)
TypeParameters

获取当前泛型方法的类型参数。

(继承自 CodeMemberMethod)
UserData

获取当前对象的用户可定义数据。

(继承自 CodeObject)

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

事件

PopulateImplementationTypes

在首次访问 ImplementationTypes 集合时将激发的事件。

(继承自 CodeMemberMethod)
PopulateParameters

在首次访问 Parameters 集合时将激发的事件。

(继承自 CodeMemberMethod)
PopulateStatements

在首次访问 Statements 集合时将激发的事件。

(继承自 CodeMemberMethod)

适用于

另请参阅