CodeEntryPointMethod 類別

定義

代表可執行檔的入口點方法。

public ref 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
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeEntryPointMethod = class
    inherit CodeMemberMethod
Public Class CodeEntryPointMethod
Inherits CodeMemberMethod
繼承
屬性

範例

此範例示範使用 a 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;
' Builds a Hello World Program Graph using System.CodeDom objects
Public Shared Function BuildHelloWorldGraph() As CodeCompileUnit
   ' Create a new CodeCompileUnit to contain the program graph
   Dim CompileUnit As New CodeCompileUnit()
   
   ' Declare a new namespace object and name it
   Dim Samples As 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
   Dim Class1 As 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
   Dim Start As New CodeEntryPointMethod()
   ' Create a new method invoke expression
   Dim cs1 As New CodeMethodInvokeExpression(New CodeTypeReferenceExpression("System.Console"), "WriteLine", New CodePrimitiveExpression("Hello World!"))
   ' Call the System.Console.WriteLine method
   ' Pass a primitive string parameter to the WriteLine method
   ' 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

End Function 'BuildHelloWorldGraph

備註

A CodeEntryPointMethod 是代表可執行檔入口點方法的 a CodeMemberMethod

建構函式

名稱 Description
CodeEntryPointMethod()

初始化 CodeEntryPointMethod 類別的新執行個體。

屬性

名稱 Description
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)

方法

名稱 Description
Equals(Object)

判斷指定的 物件是否等於目前的物件。

(繼承來源 Object)
GetHashCode()

做為預設雜湊函式。

(繼承來源 Object)
GetType()

取得目前實例的 Type

(繼承來源 Object)
MemberwiseClone()

建立目前 Object的淺層複本。

(繼承來源 Object)
ToString()

傳回表示目前 物件的字串。

(繼承來源 Object)

事件

名稱 Description
PopulateImplementationTypes

這個事件會在首次 ImplementationTypes 存取收藏時被提出。

(繼承來源 CodeMemberMethod)
PopulateParameters

這個事件會在首次 Parameters 存取收藏時被提出。

(繼承來源 CodeMemberMethod)
PopulateStatements

這個事件會在首次 Statements 存取收藏時被提出。

(繼承來源 CodeMemberMethod)

適用於

另請參閱