CodeEntryPointMethod Klasse

Definition

Stellt die Einstiegspunktmethode für eine ausführbare Datei dar.

public ref class CodeEntryPointMethod : System::CodeDom::CodeMemberMethod
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
type CodeEntryPointMethod = class
    inherit 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
Vererbung
Attribute

Beispiele

In diesem Beispiel wird die Verwendung von veranschaulicht CodeEntryPointMethod , um die -Methode anzugeben, mit der die Programmausführung gestartet werden soll.

// Builds a Hello World Program Graph using System.CodeDom objects
static CodeCompileUnit^ BuildHelloWorldGraph()
{
   
   // Create a new CodeCompileUnit to contain the program graph
   CodeCompileUnit^ CompileUnit = gcnew CodeCompileUnit;
   
   // Declare a new namespace object and name it
   CodeNamespace^ Samples = gcnew 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( gcnew CodeNamespaceImport( "System" ) );
   
   // Declare a new type object and name it
   CodeTypeDeclaration^ Class1 = gcnew 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 = gcnew CodeEntryPointMethod;
   
   // Create a new method invoke expression
   array<CodeExpression^>^temp = {gcnew CodePrimitiveExpression( "Hello World!" )};
   CodeMethodInvokeExpression^ cs1 = gcnew CodeMethodInvokeExpression( gcnew CodeTypeReferenceExpression( "System.Console" ),"WriteLine",temp );
   
   // Add the new method code statement
   Start->Statements->Add( gcnew 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 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

Hinweise

Ein CodeEntryPointMethod ist eine CodeMemberMethod , die die Einstiegspunktmethode einer ausführbaren Datei darstellt.

Konstruktoren

CodeEntryPointMethod()

Initialisiert eine neue Instanz der CodeEntryPointMethod-Klasse.

Eigenschaften

Attributes

Ruft die Attribute des Members ab oder legt diese fest.

(Geerbt von CodeTypeMember)
Comments

Ruft die Auflistung der Kommentare für den Typmember ab.

(Geerbt von CodeTypeMember)
CustomAttributes

Ruft die benutzerdefinierten Attribute des Members ab oder legt diese fest.

(Geerbt von CodeTypeMember)
EndDirectives

Ruft die Enddirektiven für den Member ab.

(Geerbt von CodeTypeMember)
ImplementationTypes

Ruft die Datentypen der von dieser Methode implementierten Schnittstellen ab, sofern es sich nicht um die Implementierung einer privaten Methode handelt. Dies wird durch die PrivateImplementationType-Eigenschaft angegeben.

(Geerbt von CodeMemberMethod)
LinePragma

Ruft die Zeile ab oder oder legt die Zeile fest, auf der die Typmemberanweisung auftritt.

(Geerbt von CodeTypeMember)
Name

Ruft den Namen des Members ab oder legt diesen fest.

(Geerbt von CodeTypeMember)
Parameters

Ruft die Parameterdeklarationen für die Methode ab.

(Geerbt von CodeMemberMethod)
PrivateImplementationType

Ruft den Datentyp der Schnittstelle ab, für die diese Methode (sofern es sich um eine private Methode handelt) ggf. eine Methode implementiert, oder legt diesen fest.

(Geerbt von CodeMemberMethod)
ReturnType

Ruft den Datentyp des Rückgabewerts der Methode ab oder legt diesen fest.

(Geerbt von CodeMemberMethod)
ReturnTypeCustomAttributes

Ruft die benutzerdefinierten Attribute des Rückgabetyps der Methode ab.

(Geerbt von CodeMemberMethod)
StartDirectives

Ruft die Startdirektiven für den Member ab.

(Geerbt von CodeTypeMember)
Statements

Ruft die Anweisungen in der Methode ab.

(Geerbt von CodeMemberMethod)
TypeParameters

Ruft die Typparameter für die aktuelle generische Methode ab.

(Geerbt von CodeMemberMethod)
UserData

Ruft die benutzerdefinierbaren Daten für das aktuelle Objekt ab.

(Geerbt von CodeObject)

Methoden

Equals(Object)

Bestimmt, ob das angegebene Objekt gleich dem aktuellen Objekt ist.

(Geerbt von Object)
GetHashCode()

Fungiert als Standardhashfunktion.

(Geerbt von Object)
GetType()

Ruft den Type der aktuellen Instanz ab.

(Geerbt von Object)
MemberwiseClone()

Erstellt eine flache Kopie des aktuellen Object.

(Geerbt von Object)
ToString()

Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt.

(Geerbt von Object)

Ereignisse

PopulateImplementationTypes

Ein Ereignis, das beim ersten Zugriff auf die ImplementationTypes-Auflistung ausgelöst wird.

(Geerbt von CodeMemberMethod)
PopulateParameters

Ein Ereignis, das beim ersten Zugriff auf die Parameters-Auflistung ausgelöst wird.

(Geerbt von CodeMemberMethod)
PopulateStatements

Ein Ereignis, das beim ersten Zugriff auf die Statements-Auflistung ausgelöst wird.

(Geerbt von CodeMemberMethod)

Gilt für:

Weitere Informationen