CodeEntryPointMethod Класс
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Представляет метод точки входа исполняемого файла.
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
- Наследование
- Атрибуты
Примеры
В этом примере демонстрируется использование для CodeEntryPointMethod указания метода запуска программы.
// 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
Комментарии
— 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) |