TypeBuilder 類別

定義

在執行階段定義和建立類別的新執行個體。

public ref class TypeBuilder sealed : Type
public ref class TypeBuilder sealed : System::Reflection::TypeInfo
public ref class TypeBuilder abstract : System::Reflection::TypeInfo
public ref class TypeBuilder sealed : Type, System::Runtime::InteropServices::_TypeBuilder
public ref class TypeBuilder sealed : System::Reflection::TypeInfo, System::Runtime::InteropServices::_TypeBuilder
public sealed class TypeBuilder : Type
public sealed class TypeBuilder : System.Reflection.TypeInfo
public abstract class TypeBuilder : System.Reflection.TypeInfo
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
public sealed class TypeBuilder : Type, System.Runtime.InteropServices._TypeBuilder
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class TypeBuilder : Type, System.Runtime.InteropServices._TypeBuilder
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class TypeBuilder : System.Reflection.TypeInfo, System.Runtime.InteropServices._TypeBuilder
type TypeBuilder = class
    inherit Type
type TypeBuilder = class
    inherit TypeInfo
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
type TypeBuilder = class
    inherit Type
    interface _TypeBuilder
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type TypeBuilder = class
    inherit Type
    interface _TypeBuilder
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type TypeBuilder = class
    inherit TypeInfo
    interface _TypeBuilder
Public NotInheritable Class TypeBuilder
Inherits Type
Public NotInheritable Class TypeBuilder
Inherits TypeInfo
Public MustInherit Class TypeBuilder
Inherits TypeInfo
Public NotInheritable Class TypeBuilder
Inherits Type
Implements _TypeBuilder
Public NotInheritable Class TypeBuilder
Inherits TypeInfo
Implements _TypeBuilder
繼承
TypeBuilder
繼承
TypeBuilder
繼承
屬性
實作

範例

下列程式代碼範例示範如何定義和使用動態元件。 此範例元件包含一種類型 , MyDynamicType其具有私用欄位、取得和設定私用欄位的屬性、初始化私用字段的建構函式,以及乘以私用域值乘以使用者提供數位的方法,並傳回結果。

using namespace System;
using namespace System::Reflection;
using namespace System::Reflection::Emit;

void main()
{
    // This code creates an assembly that contains one type,
    // named "MyDynamicType", that has a private field, a property
    // that gets and sets the private field, constructors that
    // initialize the private field, and a method that multiplies
    // a user-supplied number by the private field value and returns
    // the result. In Visual C++ the type might look like this:
    /*
      public ref class MyDynamicType
      {
      private:
          int m_number;

      public:
          MyDynamicType() : m_number(42) {};
          MyDynamicType(int initNumber) : m_number(initNumber) {};
      
          property int Number
          {
              int get() { return m_number; }
              void set(int value) { m_number = value; }
          }

          int MyMethod(int multiplier)
          {
              return m_number * multiplier;
          }
      };
    */
      
    AssemblyName^ aName = gcnew AssemblyName("DynamicAssemblyExample");
    AssemblyBuilder^ ab = 
        AssemblyBuilder::DefineDynamicAssembly(
            aName, 
            AssemblyBuilderAccess::Run);

    // The module name is usually the same as the assembly name
    ModuleBuilder^ mb = 
        ab->DefineDynamicModule(aName->Name);
      
    TypeBuilder^ tb = mb->DefineType(
        "MyDynamicType", 
         TypeAttributes::Public);

    // Add a private field of type int (Int32).
    FieldBuilder^ fbNumber = tb->DefineField(
        "m_number", 
        int::typeid, 
        FieldAttributes::Private);

    // Define a constructor that takes an integer argument and 
    // stores it in the private field. 
    array<Type^>^ parameterTypes = { int::typeid };
    ConstructorBuilder^ ctor1 = tb->DefineConstructor(
        MethodAttributes::Public, 
        CallingConventions::Standard, 
        parameterTypes);

    ILGenerator^ ctor1IL = ctor1->GetILGenerator();
    // For a constructor, argument zero is a reference to the new
    // instance. Push it on the stack before calling the base
    // class constructor. Specify the default constructor of the 
    // base class (System::Object) by passing an empty array of 
    // types (Type::EmptyTypes) to GetConstructor.
    ctor1IL->Emit(OpCodes::Ldarg_0);
    ctor1IL->Emit(OpCodes::Call, 
        Object::typeid->GetConstructor(Type::EmptyTypes));
    // Push the instance on the stack before pushing the argument
    // that is to be assigned to the private field m_number.
    ctor1IL->Emit(OpCodes::Ldarg_0);
    ctor1IL->Emit(OpCodes::Ldarg_1);
    ctor1IL->Emit(OpCodes::Stfld, fbNumber);
    ctor1IL->Emit(OpCodes::Ret);

    // Define a default constructor that supplies a default value
    // for the private field. For parameter types, pass the empty
    // array of types or pass nullptr.
    ConstructorBuilder^ ctor0 = tb->DefineConstructor(
        MethodAttributes::Public, 
        CallingConventions::Standard, 
        Type::EmptyTypes);

    ILGenerator^ ctor0IL = ctor0->GetILGenerator();
    ctor0IL->Emit(OpCodes::Ldarg_0);
    ctor0IL->Emit(OpCodes::Call, 
        Object::typeid->GetConstructor(Type::EmptyTypes));
    // For a constructor, argument zero is a reference to the new
    // instance. Push it on the stack before pushing the default
    // value on the stack.
    ctor0IL->Emit(OpCodes::Ldarg_0);
    ctor0IL->Emit(OpCodes::Ldc_I4_S, 42);
    ctor0IL->Emit(OpCodes::Stfld, fbNumber);
    ctor0IL->Emit(OpCodes::Ret);

    // Define a property named Number that gets and sets the private 
    // field.
    //
    // The last argument of DefineProperty is nullptr, because the
    // property has no parameters. (If you don't specify nullptr, you must
    // specify an array of Type objects. For a parameterless property,
    // use the built-in array with no elements: Type::EmptyTypes)
    PropertyBuilder^ pbNumber = tb->DefineProperty(
        "Number", 
        PropertyAttributes::HasDefault, 
        int::typeid, 
        nullptr);
      
    // The property "set" and property "get" methods require a special
    // set of attributes.
    MethodAttributes getSetAttr = MethodAttributes::Public | 
        MethodAttributes::SpecialName | MethodAttributes::HideBySig;

    // Define the "get" accessor method for Number. The method returns
    // an integer and has no arguments. (Note that nullptr could be 
    // used instead of Types::EmptyTypes)
    MethodBuilder^ mbNumberGetAccessor = tb->DefineMethod(
        "get_Number", 
        getSetAttr, 
        int::typeid, 
        Type::EmptyTypes);
      
    ILGenerator^ numberGetIL = mbNumberGetAccessor->GetILGenerator();
    // For an instance property, argument zero is the instance. Load the 
    // instance, then load the private field and return, leaving the
    // field value on the stack.
    numberGetIL->Emit(OpCodes::Ldarg_0);
    numberGetIL->Emit(OpCodes::Ldfld, fbNumber);
    numberGetIL->Emit(OpCodes::Ret);
    
    // Define the "set" accessor method for Number, which has no return
    // type and takes one argument of type int (Int32).
    MethodBuilder^ mbNumberSetAccessor = tb->DefineMethod(
        "set_Number", 
        getSetAttr, 
        nullptr, 
        gcnew array<Type^> { int::typeid });
      
    ILGenerator^ numberSetIL = mbNumberSetAccessor->GetILGenerator();
    // Load the instance and then the numeric argument, then store the
    // argument in the field.
    numberSetIL->Emit(OpCodes::Ldarg_0);
    numberSetIL->Emit(OpCodes::Ldarg_1);
    numberSetIL->Emit(OpCodes::Stfld, fbNumber);
    numberSetIL->Emit(OpCodes::Ret);
      
    // Last, map the "get" and "set" accessor methods to the 
    // PropertyBuilder. The property is now complete. 
    pbNumber->SetGetMethod(mbNumberGetAccessor);
    pbNumber->SetSetMethod(mbNumberSetAccessor);

    // Define a method that accepts an integer argument and returns
    // the product of that integer and the private field m_number. This
    // time, the array of parameter types is created on the fly.
    MethodBuilder^ meth = tb->DefineMethod(
        "MyMethod", 
        MethodAttributes::Public, 
        int::typeid, 
        gcnew array<Type^> { int::typeid });

    ILGenerator^ methIL = meth->GetILGenerator();
    // To retrieve the private instance field, load the instance it
    // belongs to (argument zero). After loading the field, load the 
    // argument one and then multiply. Return from the method with 
    // the return value (the product of the two numbers) on the 
    // execution stack.
    methIL->Emit(OpCodes::Ldarg_0);
    methIL->Emit(OpCodes::Ldfld, fbNumber);
    methIL->Emit(OpCodes::Ldarg_1);
    methIL->Emit(OpCodes::Mul);
    methIL->Emit(OpCodes::Ret);

    // Finish the type->
    Type^ t = tb->CreateType();

    // Because AssemblyBuilderAccess includes Run, the code can be
    // executed immediately. Start by getting reflection objects for
    // the method and the property.
    MethodInfo^ mi = t->GetMethod("MyMethod");
    PropertyInfo^ pi = t->GetProperty("Number");
  
    // Create an instance of MyDynamicType using the default 
    // constructor. 
    Object^ o1 = Activator::CreateInstance(t);

    // Display the value of the property, then change it to 127 and 
    // display it again. Use nullptr to indicate that the property
    // has no index.
    Console::WriteLine("o1->Number: {0}", pi->GetValue(o1, nullptr));
    pi->SetValue(o1, 127, nullptr);
    Console::WriteLine("o1->Number: {0}", pi->GetValue(o1, nullptr));

    // Call MyMethod, passing 22, and display the return value, 22
    // times 127. Arguments must be passed as an array, even when
    // there is only one.
    array<Object^>^ arguments = { 22 };
    Console::WriteLine("o1->MyMethod(22): {0}", 
        mi->Invoke(o1, arguments));

    // Create an instance of MyDynamicType using the constructor
    // that specifies m_Number. The constructor is identified by
    // matching the types in the argument array. In this case, 
    // the argument array is created on the fly. Display the 
    // property value.
    Object^ o2 = Activator::CreateInstance(t, 
        gcnew array<Object^> { 5280 });
    Console::WriteLine("o2->Number: {0}", pi->GetValue(o2, nullptr));
};

/* This code produces the following output:

o1->Number: 42
o1->Number: 127
o1->MyMethod(22): 2794
o2->Number: 5280
 */
using System;
using System.Reflection;
using System.Reflection.Emit;

class DemoAssemblyBuilder
{
    public static void Main()
    {
        // This code creates an assembly that contains one type,
        // named "MyDynamicType", that has a private field, a property
        // that gets and sets the private field, constructors that
        // initialize the private field, and a method that multiplies
        // a user-supplied number by the private field value and returns
        // the result. In C# the type might look like this:
        /*
        public class MyDynamicType
        {
            private int m_number;

            public MyDynamicType() : this(42) {}
            public MyDynamicType(int initNumber)
            {
                m_number = initNumber;
            }

            public int Number
            {
                get { return m_number; }
                set { m_number = value; }
            }

            public int MyMethod(int multiplier)
            {
                return m_number * multiplier;
            }
        }
        */

        var aName = new AssemblyName("DynamicAssemblyExample");
        AssemblyBuilder ab =
            AssemblyBuilder.DefineDynamicAssembly(
                aName,
                AssemblyBuilderAccess.Run);

        // The module name is usually the same as the assembly name.
        ModuleBuilder mb = ab.DefineDynamicModule(aName.Name ?? "DynamicAssemblyExample");

        TypeBuilder tb = mb.DefineType(
            "MyDynamicType",
             TypeAttributes.Public);

        // Add a private field of type int (Int32).
        FieldBuilder fbNumber = tb.DefineField(
            "m_number",
            typeof(int),
            FieldAttributes.Private);

        // Define a constructor that takes an integer argument and
        // stores it in the private field.
        Type[] parameterTypes = { typeof(int) };
        ConstructorBuilder ctor1 = tb.DefineConstructor(
            MethodAttributes.Public,
            CallingConventions.Standard,
            parameterTypes);

        ILGenerator ctor1IL = ctor1.GetILGenerator();
        // For a constructor, argument zero is a reference to the new
        // instance. Push it on the stack before calling the base
        // class constructor. Specify the default constructor of the
        // base class (System.Object) by passing an empty array of
        // types (Type.EmptyTypes) to GetConstructor.
        ctor1IL.Emit(OpCodes.Ldarg_0);
        ConstructorInfo? ci = typeof(object).GetConstructor(Type.EmptyTypes);
        ctor1IL.Emit(OpCodes.Call, ci!);
        // Push the instance on the stack before pushing the argument
        // that is to be assigned to the private field m_number.
        ctor1IL.Emit(OpCodes.Ldarg_0);
        ctor1IL.Emit(OpCodes.Ldarg_1);
        ctor1IL.Emit(OpCodes.Stfld, fbNumber);
        ctor1IL.Emit(OpCodes.Ret);

        // Define a default constructor that supplies a default value
        // for the private field. For parameter types, pass the empty
        // array of types or pass null.
        ConstructorBuilder ctor0 = tb.DefineConstructor(
            MethodAttributes.Public,
            CallingConventions.Standard,
            Type.EmptyTypes);

        ILGenerator ctor0IL = ctor0.GetILGenerator();
        // For a constructor, argument zero is a reference to the new
        // instance. Push it on the stack before pushing the default
        // value on the stack, then call constructor ctor1.
        ctor0IL.Emit(OpCodes.Ldarg_0);
        ctor0IL.Emit(OpCodes.Ldc_I4_S, 42);
        ctor0IL.Emit(OpCodes.Call, ctor1);
        ctor0IL.Emit(OpCodes.Ret);

        // Define a property named Number that gets and sets the private
        // field.
        //
        // The last argument of DefineProperty is null, because the
        // property has no parameters. (If you don't specify null, you must
        // specify an array of Type objects. For a parameterless property,
        // use the built-in array with no elements: Type.EmptyTypes)
        PropertyBuilder pbNumber = tb.DefineProperty(
            "Number",
            PropertyAttributes.HasDefault,
            typeof(int),
            null);

        // The property "set" and property "get" methods require a special
        // set of attributes.
        MethodAttributes getSetAttr = MethodAttributes.Public |
            MethodAttributes.SpecialName | MethodAttributes.HideBySig;

        // Define the "get" accessor method for Number. The method returns
        // an integer and has no arguments. (Note that null could be
        // used instead of Types.EmptyTypes)
        MethodBuilder mbNumberGetAccessor = tb.DefineMethod(
            "get_Number",
            getSetAttr,
            typeof(int),
            Type.EmptyTypes);

        ILGenerator numberGetIL = mbNumberGetAccessor.GetILGenerator();
        // For an instance property, argument zero is the instance. Load the
        // instance, then load the private field and return, leaving the
        // field value on the stack.
        numberGetIL.Emit(OpCodes.Ldarg_0);
        numberGetIL.Emit(OpCodes.Ldfld, fbNumber);
        numberGetIL.Emit(OpCodes.Ret);

        // Define the "set" accessor method for Number, which has no return
        // type and takes one argument of type int (Int32).
        MethodBuilder mbNumberSetAccessor = tb.DefineMethod(
            "set_Number",
            getSetAttr,
            null,
            new Type[] { typeof(int) });

        ILGenerator numberSetIL = mbNumberSetAccessor.GetILGenerator();
        // Load the instance and then the numeric argument, then store the
        // argument in the field.
        numberSetIL.Emit(OpCodes.Ldarg_0);
        numberSetIL.Emit(OpCodes.Ldarg_1);
        numberSetIL.Emit(OpCodes.Stfld, fbNumber);
        numberSetIL.Emit(OpCodes.Ret);

        // Last, map the "get" and "set" accessor methods to the
        // PropertyBuilder. The property is now complete.
        pbNumber.SetGetMethod(mbNumberGetAccessor);
        pbNumber.SetSetMethod(mbNumberSetAccessor);

        // Define a method that accepts an integer argument and returns
        // the product of that integer and the private field m_number. This
        // time, the array of parameter types is created on the fly.
        MethodBuilder meth = tb.DefineMethod(
            "MyMethod",
            MethodAttributes.Public,
            typeof(int),
            new Type[] { typeof(int) });

        ILGenerator methIL = meth.GetILGenerator();
        // To retrieve the private instance field, load the instance it
        // belongs to (argument zero). After loading the field, load the
        // argument one and then multiply. Return from the method with
        // the return value (the product of the two numbers) on the
        // execution stack.
        methIL.Emit(OpCodes.Ldarg_0);
        methIL.Emit(OpCodes.Ldfld, fbNumber);
        methIL.Emit(OpCodes.Ldarg_1);
        methIL.Emit(OpCodes.Mul);
        methIL.Emit(OpCodes.Ret);

        // Finish the type.
        Type? t = tb.CreateType();

        // Because AssemblyBuilderAccess includes Run, the code can be
        // executed immediately. Start by getting reflection objects for
        // the method and the property.
        MethodInfo? mi = t?.GetMethod("MyMethod");
        PropertyInfo? pi = t?.GetProperty("Number");

        // Create an instance of MyDynamicType using the default
        // constructor.
        object? o1 = null;
        if (t is not null)
            o1 = Activator.CreateInstance(t);

        // Display the value of the property, then change it to 127 and
        // display it again. Use null to indicate that the property
        // has no index.
        Console.WriteLine("o1.Number: {0}", pi?.GetValue(o1, null));
        pi?.SetValue(o1, 127, null);
        Console.WriteLine("o1.Number: {0}", pi?.GetValue(o1, null));

        // Call MyMethod, passing 22, and display the return value, 22
        // times 127. Arguments must be passed as an array, even when
        // there is only one.
        object[] arguments = { 22 };
        Console.WriteLine("o1.MyMethod(22): {0}",
            mi?.Invoke(o1, arguments));

        // Create an instance of MyDynamicType using the constructor
        // that specifies m_Number. The constructor is identified by
        // matching the types in the argument array. In this case,
        // the argument array is created on the fly. Display the
        // property value.
        object? o2 = null;
        if (t is not null)
            Activator.CreateInstance(t, new object[] { 5280 });
        Console.WriteLine("o2.Number: {0}", pi?.GetValue(o2, null));
    }
}

/* This code produces the following output:

o1.Number: 42
o1.Number: 127
o1.MyMethod(22): 2794
o2.Number: 5280
 */
Imports System.Reflection
Imports System.Reflection.Emit

Class DemoAssemblyBuilder

    Public Shared Sub Main()

        ' This code creates an assembly that contains one type,
        ' named "MyDynamicType", that has a private field, a property
        ' that gets and sets the private field, constructors that
        ' initialize the private field, and a method that multiplies
        ' a user-supplied number by the private field value and returns
        ' the result. The code might look like this in Visual Basic:
        '
        'Public Class MyDynamicType
        '    Private m_number As Integer
        '
        '    Public Sub New()
        '        Me.New(42)
        '    End Sub
        '
        '    Public Sub New(ByVal initNumber As Integer)
        '        m_number = initNumber
        '    End Sub
        '
        '    Public Property Number As Integer
        '        Get
        '            Return m_number
        '        End Get
        '        Set
        '            m_Number = Value
        '        End Set
        '    End Property
        '
        '    Public Function MyMethod(ByVal multiplier As Integer) As Integer
        '        Return m_Number * multiplier
        '    End Function
        'End Class
      
        Dim aName As New AssemblyName("DynamicAssemblyExample")
        Dim ab As AssemblyBuilder = _
            AssemblyBuilder.DefineDynamicAssembly( _
                aName, _
                AssemblyBuilderAccess.Run)

        ' The module name is usually the same as the assembly name.
        Dim mb As ModuleBuilder = ab.DefineDynamicModule( _
            aName.Name)
      
        Dim tb As TypeBuilder = _
            mb.DefineType("MyDynamicType", TypeAttributes.Public)

        ' Add a private field of type Integer (Int32).
        Dim fbNumber As FieldBuilder = tb.DefineField( _
            "m_number", _
            GetType(Integer), _
            FieldAttributes.Private)

        ' Define a constructor that takes an integer argument and 
        ' stores it in the private field. 
        Dim parameterTypes() As Type = { GetType(Integer) }
        Dim ctor1 As ConstructorBuilder = _
            tb.DefineConstructor( _
                MethodAttributes.Public, _
                CallingConventions.Standard, _
                parameterTypes)

        Dim ctor1IL As ILGenerator = ctor1.GetILGenerator()
        ' For a constructor, argument zero is a reference to the new
        ' instance. Push it on the stack before calling the base
        ' class constructor. Specify the default constructor of the 
        ' base class (System.Object) by passing an empty array of 
        ' types (Type.EmptyTypes) to GetConstructor.
        ctor1IL.Emit(OpCodes.Ldarg_0)
        ctor1IL.Emit(OpCodes.Call, _
            GetType(Object).GetConstructor(Type.EmptyTypes))
        ' Push the instance on the stack before pushing the argument
        ' that is to be assigned to the private field m_number.
        ctor1IL.Emit(OpCodes.Ldarg_0)
        ctor1IL.Emit(OpCodes.Ldarg_1)
        ctor1IL.Emit(OpCodes.Stfld, fbNumber)
        ctor1IL.Emit(OpCodes.Ret)

        ' Define a default constructor that supplies a default value
        ' for the private field. For parameter types, pass the empty
        ' array of types or pass Nothing.
        Dim ctor0 As ConstructorBuilder = tb.DefineConstructor( _
            MethodAttributes.Public, _
            CallingConventions.Standard, _
            Type.EmptyTypes)

        Dim ctor0IL As ILGenerator = ctor0.GetILGenerator()
        ' For a constructor, argument zero is a reference to the new
        ' instance. Push it on the stack before pushing the default
        ' value on the stack, then call constructor ctor1.
        ctor0IL.Emit(OpCodes.Ldarg_0)
        ctor0IL.Emit(OpCodes.Ldc_I4_S, 42)
        ctor0IL.Emit(OpCodes.Call, ctor1)
        ctor0IL.Emit(OpCodes.Ret)

        ' Define a property named Number that gets and sets the private 
        ' field.
        '
        ' The last argument of DefineProperty is Nothing, because the
        ' property has no parameters. (If you don't specify Nothing, you must
        ' specify an array of Type objects. For a parameterless property,
        ' use the built-in array with no elements: Type.EmptyTypes)
        Dim pbNumber As PropertyBuilder = tb.DefineProperty( _
            "Number", _
            PropertyAttributes.HasDefault, _
            GetType(Integer), _
            Nothing)
      
        ' The property Set and property Get methods require a special
        ' set of attributes.
        Dim getSetAttr As MethodAttributes = _
            MethodAttributes.Public Or MethodAttributes.SpecialName _
                Or MethodAttributes.HideBySig

        ' Define the "get" accessor method for Number. The method returns
        ' an integer and has no arguments. (Note that Nothing could be 
        ' used instead of Types.EmptyTypes)
        Dim mbNumberGetAccessor As MethodBuilder = tb.DefineMethod( _
            "get_Number", _
            getSetAttr, _
            GetType(Integer), _
            Type.EmptyTypes)
      
        Dim numberGetIL As ILGenerator = mbNumberGetAccessor.GetILGenerator()
        ' For an instance property, argument zero is the instance. Load the 
        ' instance, then load the private field and return, leaving the
        ' field value on the stack.
        numberGetIL.Emit(OpCodes.Ldarg_0)
        numberGetIL.Emit(OpCodes.Ldfld, fbNumber)
        numberGetIL.Emit(OpCodes.Ret)
        
        ' Define the "set" accessor method for Number, which has no return
        ' type and takes one argument of type Integer (Int32).
        Dim mbNumberSetAccessor As MethodBuilder = _
            tb.DefineMethod( _
                "set_Number", _
                getSetAttr, _
                Nothing, _
                New Type() { GetType(Integer) })
      
        Dim numberSetIL As ILGenerator = mbNumberSetAccessor.GetILGenerator()
        ' Load the instance and then the numeric argument, then store the
        ' argument in the field.
        numberSetIL.Emit(OpCodes.Ldarg_0)
        numberSetIL.Emit(OpCodes.Ldarg_1)
        numberSetIL.Emit(OpCodes.Stfld, fbNumber)
        numberSetIL.Emit(OpCodes.Ret)
      
        ' Last, map the "get" and "set" accessor methods to the 
        ' PropertyBuilder. The property is now complete. 
        pbNumber.SetGetMethod(mbNumberGetAccessor)
        pbNumber.SetSetMethod(mbNumberSetAccessor)

        ' Define a method that accepts an integer argument and returns
        ' the product of that integer and the private field m_number. This
        ' time, the array of parameter types is created on the fly.
        Dim meth As MethodBuilder = tb.DefineMethod( _
            "MyMethod", _
            MethodAttributes.Public, _
            GetType(Integer), _
            New Type() { GetType(Integer) })

        Dim methIL As ILGenerator = meth.GetILGenerator()
        ' To retrieve the private instance field, load the instance it
        ' belongs to (argument zero). After loading the field, load the 
        ' argument one and then multiply. Return from the method with 
        ' the return value (the product of the two numbers) on the 
        ' execution stack.
        methIL.Emit(OpCodes.Ldarg_0)
        methIL.Emit(OpCodes.Ldfld, fbNumber)
        methIL.Emit(OpCodes.Ldarg_1)
        methIL.Emit(OpCodes.Mul)
        methIL.Emit(OpCodes.Ret)

        ' Finish the type.
        Dim t As Type = tb.CreateType()

        ' Because AssemblyBuilderAccess includes Run, the code can be
        ' executed immediately. Start by getting reflection objects for
        ' the method and the property.
        Dim mi As MethodInfo = t.GetMethod("MyMethod")
        Dim pi As PropertyInfo = t.GetProperty("Number")
  
        ' Create an instance of MyDynamicType using the default 
        ' constructor. 
        Dim o1 As Object = Activator.CreateInstance(t)

        ' Display the value of the property, then change it to 127 and 
        ' display it again. Use Nothing to indicate that the property
        ' has no index.
        Console.WriteLine("o1.Number: {0}", pi.GetValue(o1, Nothing))
        pi.SetValue(o1, 127, Nothing)
        Console.WriteLine("o1.Number: {0}", pi.GetValue(o1, Nothing))

        ' Call MyMethod, passing 22, and display the return value, 22
        ' times 127. Arguments must be passed as an array, even when
        ' there is only one.
        Dim arguments() As Object = { 22 }
        Console.WriteLine("o1.MyMethod(22): {0}", _
            mi.Invoke(o1, arguments))

        ' Create an instance of MyDynamicType using the constructor
        ' that specifies m_Number. The constructor is identified by
        ' matching the types in the argument array. In this case, 
        ' the argument array is created on the fly. Display the 
        ' property value.
        Dim o2 As Object = Activator.CreateInstance(t, _
            New Object() { 5280 })
        Console.WriteLine("o2.Number: {0}", pi.GetValue(o2, Nothing))
      
    End Sub  
End Class

' This code produces the following output:
'
'o1.Number: 42
'o1.Number: 127
'o1.MyMethod(22): 2794
'o2.Number: 5280

下列程式代碼範例示範如何使用 動態 TypeBuilder建置類型。

using namespace System;
using namespace System::Threading;
using namespace System::Reflection;
using namespace System::Reflection::Emit;
Type^ DynamicDotProductGen()
{
   Type^ ivType = nullptr;
   array<Type^>^temp0 = {int::typeid,int::typeid,int::typeid};
   array<Type^>^ctorParams = temp0;
   AppDomain^ myDomain = Thread::GetDomain();
   AssemblyName^ myAsmName = gcnew AssemblyName;
   myAsmName->Name = "IntVectorAsm";
   AssemblyBuilder^ myAsmBuilder = myDomain->DefineDynamicAssembly( myAsmName, AssemblyBuilderAccess::RunAndSave );
   ModuleBuilder^ IntVectorModule = myAsmBuilder->DefineDynamicModule( "IntVectorModule", "Vector.dll" );
   TypeBuilder^ ivTypeBld = IntVectorModule->DefineType( "IntVector", TypeAttributes::Public );
   FieldBuilder^ xField = ivTypeBld->DefineField( "x", int::typeid, FieldAttributes::Private );
   FieldBuilder^ yField = ivTypeBld->DefineField( "y", int::typeid, FieldAttributes::Private );
   FieldBuilder^ zField = ivTypeBld->DefineField( "z", int::typeid, FieldAttributes::Private );
   Type^ objType = Type::GetType( "System.Object" );
   ConstructorInfo^ objCtor = objType->GetConstructor( gcnew array<Type^>(0) );
   ConstructorBuilder^ ivCtor = ivTypeBld->DefineConstructor( MethodAttributes::Public, CallingConventions::Standard, ctorParams );
   ILGenerator^ ctorIL = ivCtor->GetILGenerator();
   ctorIL->Emit( OpCodes::Ldarg_0 );
   ctorIL->Emit( OpCodes::Call, objCtor );
   ctorIL->Emit( OpCodes::Ldarg_0 );
   ctorIL->Emit( OpCodes::Ldarg_1 );
   ctorIL->Emit( OpCodes::Stfld, xField );
   ctorIL->Emit( OpCodes::Ldarg_0 );
   ctorIL->Emit( OpCodes::Ldarg_2 );
   ctorIL->Emit( OpCodes::Stfld, yField );
   ctorIL->Emit( OpCodes::Ldarg_0 );
   ctorIL->Emit( OpCodes::Ldarg_3 );
   ctorIL->Emit( OpCodes::Stfld, zField );
   ctorIL->Emit( OpCodes::Ret );
   
   // This method will find the dot product of the stored vector
   // with another.
   array<Type^>^temp1 = {ivTypeBld};
   array<Type^>^dpParams = temp1;
   
   // Here, you create a MethodBuilder containing the
   // name, the attributes (public, static, private, and so on),
   // the return type (int, in this case), and a array of Type
   // indicating the type of each parameter. Since the sole parameter
   // is a IntVector, the very class you're creating, you will
   // pass in the TypeBuilder (which is derived from Type) instead of
   // a Type object for IntVector, avoiding an exception.
   // -- This method would be declared in C# as:
   //    public int DotProduct(IntVector aVector)
   MethodBuilder^ dotProductMthd = ivTypeBld->DefineMethod( "DotProduct", MethodAttributes::Public, int::typeid, dpParams );
   
   // A ILGenerator can now be spawned, attached to the MethodBuilder.
   ILGenerator^ mthdIL = dotProductMthd->GetILGenerator();
   
   // Here's the body of our function, in MSIL form. We're going to find the
   // "dot product" of the current vector instance with the passed vector
   // instance. For reference purposes, the equation is:
   // (x1 * x2) + (y1 * y2) + (z1 * z2) = the dot product
   // First, you'll load the reference to the current instance "this"
   // stored in argument 0 (ldarg.0) onto the stack. Ldfld, the subsequent
   // instruction, will pop the reference off the stack and look up the
   // field "x", specified by the FieldInfo token "xField".
   mthdIL->Emit( OpCodes::Ldarg_0 );
   mthdIL->Emit( OpCodes::Ldfld, xField );
   
   // That completed, the value stored at field "x" is now atop the stack.
   // Now, you'll do the same for the Object reference we passed as a
   // parameter, stored in argument 1 (ldarg.1). After Ldfld executed,
   // you'll have the value stored in field "x" for the passed instance
   // atop the stack.
   mthdIL->Emit( OpCodes::Ldarg_1 );
   mthdIL->Emit( OpCodes::Ldfld, xField );
   
   // There will now be two values atop the stack - the "x" value for the
   // current vector instance, and the "x" value for the passed instance.
   // You'll now multiply them, and push the result onto the evaluation stack.
   mthdIL->Emit( OpCodes::Mul_Ovf_Un );
   
   // Now, repeat this for the "y" fields of both vectors.
   mthdIL->Emit( OpCodes::Ldarg_0 );
   mthdIL->Emit( OpCodes::Ldfld, yField );
   mthdIL->Emit( OpCodes::Ldarg_1 );
   mthdIL->Emit( OpCodes::Ldfld, yField );
   mthdIL->Emit( OpCodes::Mul_Ovf_Un );
   
   // At this time, the results of both multiplications should be atop
   // the stack. You'll now add them and push the result onto the stack.
   mthdIL->Emit( OpCodes::Add_Ovf_Un );
   
   // Multiply both "z" field and push the result onto the stack.
   mthdIL->Emit( OpCodes::Ldarg_0 );
   mthdIL->Emit( OpCodes::Ldfld, zField );
   mthdIL->Emit( OpCodes::Ldarg_1 );
   mthdIL->Emit( OpCodes::Ldfld, zField );
   mthdIL->Emit( OpCodes::Mul_Ovf_Un );
   
   // Finally, add the result of multiplying the "z" fields with the
   // result of the earlier addition, and push the result - the dot product -
   // onto the stack.
   mthdIL->Emit( OpCodes::Add_Ovf_Un );
   
   // The "ret" opcode will pop the last value from the stack and return it
   // to the calling method. You're all done!
   mthdIL->Emit( OpCodes::Ret );
   ivType = ivTypeBld->CreateType();
   return ivType;
}

int main()
{
   Type^ IVType = nullptr;
   Object^ aVector1 = nullptr;
   Object^ aVector2 = nullptr;
   array<Type^>^temp2 = {int::typeid,int::typeid,int::typeid};
   array<Type^>^aVtypes = temp2;
   array<Object^>^temp3 = {10,10,10};
   array<Object^>^aVargs1 = temp3;
   array<Object^>^temp4 = {20,20,20};
   array<Object^>^aVargs2 = temp4;
   
   // Call the  method to build our dynamic class.
   IVType = DynamicDotProductGen();
   Console::WriteLine( "---" );
   ConstructorInfo^ myDTctor = IVType->GetConstructor( aVtypes );
   aVector1 = myDTctor->Invoke( aVargs1 );
   aVector2 = myDTctor->Invoke( aVargs2 );
   array<Object^>^passMe = gcnew array<Object^>(1);
   passMe[ 0 ] = dynamic_cast<Object^>(aVector2);
   Console::WriteLine( "(10, 10, 10) . (20, 20, 20) = {0}", IVType->InvokeMember( "DotProduct", BindingFlags::InvokeMethod, nullptr, aVector1, passMe ) );
}

// +++ OUTPUT +++
// ---
// (10, 10, 10) . (20, 20, 20) = 600
using System;
using System.Threading;
using System.Reflection;
using System.Reflection.Emit;

class TestILGenerator
{
    public static Type DynamicDotProductGen()
    {
       Type ivType = null;
       Type[] ctorParams = new Type[] { typeof(int),
                                typeof(int),
                        typeof(int)};
    
       AppDomain myDomain = Thread.GetDomain();
       AssemblyName myAsmName = new AssemblyName();
       myAsmName.Name = "IntVectorAsm";
    
       AssemblyBuilder myAsmBuilder = myDomain.DefineDynamicAssembly(
                      myAsmName,
                      AssemblyBuilderAccess.RunAndSave);

       ModuleBuilder IntVectorModule = myAsmBuilder.DefineDynamicModule("IntVectorModule",
                                        "Vector.dll");

       TypeBuilder ivTypeBld = IntVectorModule.DefineType("IntVector",
                                      TypeAttributes.Public);

       FieldBuilder xField = ivTypeBld.DefineField("x", typeof(int),
                                                       FieldAttributes.Private);
       FieldBuilder yField = ivTypeBld.DefineField("y", typeof(int),
                                                       FieldAttributes.Private);
       FieldBuilder zField = ivTypeBld.DefineField("z", typeof(int),
                                                       FieldAttributes.Private);

           Type objType = Type.GetType("System.Object");
           ConstructorInfo objCtor = objType.GetConstructor(new Type[0]);

       ConstructorBuilder ivCtor = ivTypeBld.DefineConstructor(
                      MethodAttributes.Public,
                      CallingConventions.Standard,
                      ctorParams);
       ILGenerator ctorIL = ivCtor.GetILGenerator();
           ctorIL.Emit(OpCodes.Ldarg_0);
           ctorIL.Emit(OpCodes.Call, objCtor);
           ctorIL.Emit(OpCodes.Ldarg_0);
           ctorIL.Emit(OpCodes.Ldarg_1);
           ctorIL.Emit(OpCodes.Stfld, xField);
           ctorIL.Emit(OpCodes.Ldarg_0);
           ctorIL.Emit(OpCodes.Ldarg_2);
           ctorIL.Emit(OpCodes.Stfld, yField);
           ctorIL.Emit(OpCodes.Ldarg_0);
           ctorIL.Emit(OpCodes.Ldarg_3);
           ctorIL.Emit(OpCodes.Stfld, zField);
       ctorIL.Emit(OpCodes.Ret);

       // This method will find the dot product of the stored vector
       // with another.

       Type[] dpParams = new Type[] { ivTypeBld };

           // Here, you create a MethodBuilder containing the
       // name, the attributes (public, static, private, and so on),
       // the return type (int, in this case), and a array of Type
       // indicating the type of each parameter. Since the sole parameter
       // is a IntVector, the very class you're creating, you will
       // pass in the TypeBuilder (which is derived from Type) instead of
       // a Type object for IntVector, avoiding an exception.

       // -- This method would be declared in C# as:
       //    public int DotProduct(IntVector aVector)

           MethodBuilder dotProductMthd = ivTypeBld.DefineMethod(
                                  "DotProduct",
                          MethodAttributes.Public,
                                          typeof(int),
                                          dpParams);

       // A ILGenerator can now be spawned, attached to the MethodBuilder.

       ILGenerator mthdIL = dotProductMthd.GetILGenerator();
    
       // Here's the body of our function, in MSIL form. We're going to find the
       // "dot product" of the current vector instance with the passed vector
       // instance. For reference purposes, the equation is:
       // (x1 * x2) + (y1 * y2) + (z1 * z2) = the dot product

       // First, you'll load the reference to the current instance "this"
       // stored in argument 0 (ldarg.0) onto the stack. Ldfld, the subsequent
       // instruction, will pop the reference off the stack and look up the
       // field "x", specified by the FieldInfo token "xField".

       mthdIL.Emit(OpCodes.Ldarg_0);
       mthdIL.Emit(OpCodes.Ldfld, xField);

       // That completed, the value stored at field "x" is now atop the stack.
       // Now, you'll do the same for the object reference we passed as a
       // parameter, stored in argument 1 (ldarg.1). After Ldfld executed,
       // you'll have the value stored in field "x" for the passed instance
       // atop the stack.

       mthdIL.Emit(OpCodes.Ldarg_1);
       mthdIL.Emit(OpCodes.Ldfld, xField);

           // There will now be two values atop the stack - the "x" value for the
       // current vector instance, and the "x" value for the passed instance.
       // You'll now multiply them, and push the result onto the evaluation stack.

       mthdIL.Emit(OpCodes.Mul_Ovf_Un);

       // Now, repeat this for the "y" fields of both vectors.

       mthdIL.Emit(OpCodes.Ldarg_0);
       mthdIL.Emit(OpCodes.Ldfld, yField);
       mthdIL.Emit(OpCodes.Ldarg_1);
       mthdIL.Emit(OpCodes.Ldfld, yField);
       mthdIL.Emit(OpCodes.Mul_Ovf_Un);

       // At this time, the results of both multiplications should be atop
       // the stack. You'll now add them and push the result onto the stack.

       mthdIL.Emit(OpCodes.Add_Ovf_Un);

       // Multiply both "z" field and push the result onto the stack.
       mthdIL.Emit(OpCodes.Ldarg_0);
       mthdIL.Emit(OpCodes.Ldfld, zField);
       mthdIL.Emit(OpCodes.Ldarg_1);
       mthdIL.Emit(OpCodes.Ldfld, zField);
       mthdIL.Emit(OpCodes.Mul_Ovf_Un);

       // Finally, add the result of multiplying the "z" fields with the
       // result of the earlier addition, and push the result - the dot product -
       // onto the stack.
       mthdIL.Emit(OpCodes.Add_Ovf_Un);

       // The "ret" opcode will pop the last value from the stack and return it
       // to the calling method. You're all done!

       mthdIL.Emit(OpCodes.Ret);

       ivType = ivTypeBld.CreateType();

       return ivType;
    }

    public static void Main() {
    
       Type IVType = null;
           object aVector1 = null;
           object aVector2 = null;
       Type[] aVtypes = new Type[] {typeof(int), typeof(int), typeof(int)};
           object[] aVargs1 = new object[] {10, 10, 10};
           object[] aVargs2 = new object[] {20, 20, 20};
    
       // Call the  method to build our dynamic class.

       IVType = DynamicDotProductGen();

           Console.WriteLine("---");

       ConstructorInfo myDTctor = IVType.GetConstructor(aVtypes);
       aVector1 = myDTctor.Invoke(aVargs1);
       aVector2 = myDTctor.Invoke(aVargs2);

       object[] passMe = new object[1];
           passMe[0] = (object)aVector2;

       Console.WriteLine("(10, 10, 10) . (20, 20, 20) = {0}",
                 IVType.InvokeMember("DotProduct",
                          BindingFlags.InvokeMethod,
                          null,
                          aVector1,
                          passMe));

       // +++ OUTPUT +++
       // ---
       // (10, 10, 10) . (20, 20, 20) = 600
    }
}
Imports System.Threading
Imports System.Reflection
Imports System.Reflection.Emit

 _


Class TestILGenerator
   
   
   Public Shared Function DynamicDotProductGen() As Type
      
      Dim ivType As Type = Nothing
      Dim ctorParams() As Type = {GetType(Integer), GetType(Integer), GetType(Integer)}
      
      Dim myDomain As AppDomain = Thread.GetDomain()
      Dim myAsmName As New AssemblyName()
      myAsmName.Name = "IntVectorAsm"
      
      Dim myAsmBuilder As AssemblyBuilder = myDomain.DefineDynamicAssembly( _
                        myAsmName, _
                        AssemblyBuilderAccess.RunAndSave)
      
      Dim IntVectorModule As ModuleBuilder = myAsmBuilder.DefineDynamicModule( _
                         "IntVectorModule", _
                         "Vector.dll")
      
      Dim ivTypeBld As TypeBuilder = IntVectorModule.DefineType("IntVector", TypeAttributes.Public)
      
      Dim xField As FieldBuilder = ivTypeBld.DefineField("x", _
                                 GetType(Integer), _
                                 FieldAttributes.Private)
      Dim yField As FieldBuilder = ivTypeBld.DefineField("y", _ 
                                 GetType(Integer), _
                                 FieldAttributes.Private)
      Dim zField As FieldBuilder = ivTypeBld.DefineField("z", _
                                 GetType(Integer), _
                                 FieldAttributes.Private)
      
      
      Dim objType As Type = Type.GetType("System.Object")
      Dim objCtor As ConstructorInfo = objType.GetConstructor(New Type() {})
      
      Dim ivCtor As ConstructorBuilder = ivTypeBld.DefineConstructor( _
                     MethodAttributes.Public, _
                     CallingConventions.Standard, _
                     ctorParams)
      Dim ctorIL As ILGenerator = ivCtor.GetILGenerator()
      ctorIL.Emit(OpCodes.Ldarg_0)
      ctorIL.Emit(OpCodes.Call, objCtor)
      ctorIL.Emit(OpCodes.Ldarg_0)
      ctorIL.Emit(OpCodes.Ldarg_1)
      ctorIL.Emit(OpCodes.Stfld, xField)
      ctorIL.Emit(OpCodes.Ldarg_0)
      ctorIL.Emit(OpCodes.Ldarg_2)
      ctorIL.Emit(OpCodes.Stfld, yField)
      ctorIL.Emit(OpCodes.Ldarg_0)
      ctorIL.Emit(OpCodes.Ldarg_3)
      ctorIL.Emit(OpCodes.Stfld, zField)
      ctorIL.Emit(OpCodes.Ret)
     

      ' Now, you'll construct the method find the dot product of two vectors. First,
      ' let's define the parameters that will be accepted by the method. In this case,
      ' it's an IntVector itself!

      Dim dpParams() As Type = {ivTypeBld}
      
      ' Here, you create a MethodBuilder containing the
      ' name, the attributes (public, static, private, and so on),
      ' the return type (int, in this case), and a array of Type
      ' indicating the type of each parameter. Since the sole parameter
      ' is a IntVector, the very class you're creating, you will
      ' pass in the TypeBuilder (which is derived from Type) instead of 
      ' a Type object for IntVector, avoiding an exception. 
      ' -- This method would be declared in VB.NET as:
      '    Public Function DotProduct(IntVector aVector) As Integer

      Dim dotProductMthd As MethodBuilder = ivTypeBld.DefineMethod("DotProduct", _
                        MethodAttributes.Public, GetType(Integer), _
                                            dpParams)
      
      ' A ILGenerator can now be spawned, attached to the MethodBuilder.
      Dim mthdIL As ILGenerator = dotProductMthd.GetILGenerator()
      
      ' Here's the body of our function, in MSIL form. We're going to find the
      ' "dot product" of the current vector instance with the passed vector 
      ' instance. For reference purposes, the equation is:
      ' (x1 * x2) + (y1 * y2) + (z1 * z2) = the dot product
      ' First, you'll load the reference to the current instance "this"
      ' stored in argument 0 (ldarg.0) onto the stack. Ldfld, the subsequent
      ' instruction, will pop the reference off the stack and look up the
      ' field "x", specified by the FieldInfo token "xField".
      mthdIL.Emit(OpCodes.Ldarg_0)
      mthdIL.Emit(OpCodes.Ldfld, xField)
      
      ' That completed, the value stored at field "x" is now atop the stack.
      ' Now, you'll do the same for the object reference we passed as a
      ' parameter, stored in argument 1 (ldarg.1). After Ldfld executed,
      ' you'll have the value stored in field "x" for the passed instance
      ' atop the stack.
      mthdIL.Emit(OpCodes.Ldarg_1)
      mthdIL.Emit(OpCodes.Ldfld, xField)
      
      ' There will now be two values atop the stack - the "x" value for the
      ' current vector instance, and the "x" value for the passed instance.
      ' You'll now multiply them, and push the result onto the evaluation stack.
      mthdIL.Emit(OpCodes.Mul_Ovf_Un)
      
      ' Now, repeat this for the "y" fields of both vectors.
      mthdIL.Emit(OpCodes.Ldarg_0)
      mthdIL.Emit(OpCodes.Ldfld, yField)
      mthdIL.Emit(OpCodes.Ldarg_1)
      mthdIL.Emit(OpCodes.Ldfld, yField)
      mthdIL.Emit(OpCodes.Mul_Ovf_Un)
      
      ' At this time, the results of both multiplications should be atop
      ' the stack. You'll now add them and push the result onto the stack.
      mthdIL.Emit(OpCodes.Add_Ovf_Un)
      
      ' Multiply both "z" field and push the result onto the stack.
      mthdIL.Emit(OpCodes.Ldarg_0)
      mthdIL.Emit(OpCodes.Ldfld, zField)
      mthdIL.Emit(OpCodes.Ldarg_1)
      mthdIL.Emit(OpCodes.Ldfld, zField)
      mthdIL.Emit(OpCodes.Mul_Ovf_Un)
      
      ' Finally, add the result of multiplying the "z" fields with the
      ' result of the earlier addition, and push the result - the dot product -
      ' onto the stack.
      mthdIL.Emit(OpCodes.Add_Ovf_Un)
      
      ' The "ret" opcode will pop the last value from the stack and return it
      ' to the calling method. You're all done!
      mthdIL.Emit(OpCodes.Ret)
      
      
      ivType = ivTypeBld.CreateType()
      
      Return ivType
   End Function 'DynamicDotProductGen
    
   
   Public Shared Sub Main()
      
      Dim IVType As Type = Nothing
      Dim aVector1 As Object = Nothing
      Dim aVector2 As Object = Nothing
      Dim aVtypes() As Type = {GetType(Integer), GetType(Integer), GetType(Integer)}
      Dim aVargs1() As Object = {10, 10, 10}
      Dim aVargs2() As Object = {20, 20, 20}
      
      ' Call the  method to build our dynamic class.
      IVType = DynamicDotProductGen()
      
      
      Dim myDTctor As ConstructorInfo = IVType.GetConstructor(aVtypes)
      aVector1 = myDTctor.Invoke(aVargs1)
      aVector2 = myDTctor.Invoke(aVargs2)
      
      Console.WriteLine("---")
      Dim passMe(0) As Object
      passMe(0) = CType(aVector2, Object)
      
      Console.WriteLine("(10, 10, 10) . (20, 20, 20) = {0}", _
                        IVType.InvokeMember("DotProduct", BindingFlags.InvokeMethod, _
                        Nothing, aVector1, passMe))
   End Sub
End Class



' +++ OUTPUT +++
' ---
' (10, 10, 10) . (20, 20, 20) = 600

備註

如需此 API 的詳細資訊,請參閱 TypeBuilder 的補充 API 備註

建構函式

TypeBuilder()

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

欄位

UnspecifiedTypeSize

代表未指定該類型的總大小。

屬性

Assembly

擷取包含這個類型定義的動態組件。

AssemblyQualifiedName

傳回這個類型的完整名稱,該名稱是由組件的顯示名稱所限定。

Attributes

在執行階段定義和建立類別的新執行個體。

Attributes

取得與 Type 關聯的屬性。

(繼承來源 Type)
Attributes

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
BaseType

擷取這個類型的基底類型。

ContainsGenericParameters

在執行階段定義和建立類別的新執行個體。

ContainsGenericParameters

取得值,該值指出目前的 Type 物件是否有尚未被特定類型取代的類型參數。

(繼承來源 Type)
ContainsGenericParameters

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
CustomAttributes

取得包含此成員之自訂屬性的集合。

(繼承來源 MemberInfo)
DeclaredConstructors

取得目前類型所宣告之建構函式的集合。

(繼承來源 TypeInfo)
DeclaredEvents

取得目前類型所定義之事件的集合。

(繼承來源 TypeInfo)
DeclaredFields

取得目前類型所定義之欄位的集合。

(繼承來源 TypeInfo)
DeclaredMembers

取得目前類型所定義之成員的集合。

(繼承來源 TypeInfo)
DeclaredMethods

取得目前類型所定義之方法的集合。

(繼承來源 TypeInfo)
DeclaredNestedTypes

取得目前類型所定義之巢狀類型的集合。

(繼承來源 TypeInfo)
DeclaredProperties

取得目前類型所定義之屬性的集合。

(繼承來源 TypeInfo)
DeclaringMethod

取得宣告目前泛型型別參數的方法。

DeclaringMethod

如果目前的 MethodBase 表示泛型方法的型別參數,則取得表示宣告方法的 Type

(繼承來源 Type)
DeclaringType

傳回宣告這個類型的類型。

FullName

擷取這個類型的完整路徑。

GenericParameterAttributes

取得值,指出目前泛型類型參數的共變數與特殊條件約束。

GenericParameterAttributes

取得一組 GenericParameterAttributes 旗標,敘述目前泛型類型參數的共變數與特殊條件約束。

(繼承來源 Type)
GenericParameterPosition

取得型別參數在宣告參數的泛型類型之型別參數清單中的位置。

GenericParameterPosition

Type 物件表示泛型類型或泛型方法的類型參數時,在宣告參數的泛型類型或泛型方法之類型參數清單中,取得類型參數的位置。

(繼承來源 Type)
GenericTypeArguments

在執行階段定義和建立類別的新執行個體。

GenericTypeArguments

取得此類型之泛型類型引數的陣列。

(繼承來源 Type)
GenericTypeArguments

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GenericTypeParameters

取得目前執行個體之泛型類型的陣列。

(繼承來源 TypeInfo)
GUID

擷取這個類型的 GUID。

HasElementType

取得值,指出目前 Type 是否內含或參考其他類型;也就是說,目前 Type 是否為陣列、指標或以傳址方式傳遞。

(繼承來源 Type)
HasElementType

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
ImplementedInterfaces

取得目前類型所實作之介面的集合。

(繼承來源 TypeInfo)
IsAbstract

取得值,指出 Type 是否為抽象並且必須被覆寫。

(繼承來源 Type)
IsAbstract

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsAnsiClass

取得值,指出是否為 AnsiClass 選取字串格式屬性 Type

(繼承來源 Type)
IsAnsiClass

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsArray

取得值,以表示類型是否為陣列。

(繼承來源 Type)
IsArray

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsAutoClass

取得值,指出是否為 AutoClass 選取字串格式屬性 Type

(繼承來源 Type)
IsAutoClass

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsAutoLayout

取得表示目前類型的欄位是否已由 Common Language Runtime 自動配置版面的值。

(繼承來源 Type)
IsAutoLayout

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsByRef

取得值,指出 Type 是否以傳址方式傳遞。

(繼承來源 Type)
IsByRef

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsByRefLike

取得值,指出類型是否為 byref-like 結構。

IsByRefLike

取得值,指出類型是否為 byref-like 結構。

(繼承來源 Type)
IsClass

取得值,表示 Type 是類別或委派,也就是非實值類型或介面。

(繼承來源 Type)
IsClass

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsCollectible

取得指出此 MemberInfo 物件是否為可回收 AssemblyLoadContext 中保存之組件一部分的值。

(繼承來源 MemberInfo)
IsCOMObject

取得值,指出 Type 是否為 COM 物件。

(繼承來源 Type)
IsCOMObject

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsConstructedGenericType

取得值,指出這個物件是否表示建構的泛型類型。

IsConstructedGenericType

取得值,指出這個物件是否表示建構的泛型類型。 您可以建立已建構之泛型類型的執行個體。

(繼承來源 Type)
IsContextful

取得值,指出在內容中是否可以裝載 Type

(繼承來源 Type)
IsEnum

在執行階段定義和建立類別的新執行個體。

IsEnum

取得值,指出目前的 Type 是否表示列舉類型。

(繼承來源 Type)
IsEnum

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsExplicitLayout

取得表示目前類型的欄位是否已在明確指定之位移配置版面的值。

(繼承來源 Type)
IsExplicitLayout

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsFunctionPointer

取得值,這個值表示目前 Type 是否為函式指標。

(繼承來源 Type)
IsGenericMethodParameter

取得值,指出目前的 Type 是否在泛型方法的定義中代表型別參數。

(繼承來源 Type)
IsGenericParameter

取得值,指出目前類型是否為泛型類型參數。

IsGenericParameter

取得值,指出目前的 Type 是否表示泛型類型或泛型方法定義中的類型參數。

(繼承來源 Type)
IsGenericType

取得值,指出目前類型是否為泛型類型。

IsGenericType

取得值,指出目前類型是否為泛型類型。

(繼承來源 Type)
IsGenericTypeDefinition

取得值,指出目前的 TypeBuilder 是否代表可用於建構其他泛型類型的泛型類型定義。

IsGenericTypeDefinition

取得值,指出目前的 Type 是否表示可用於建構其他泛型類型的泛型類型定義。

(繼承來源 Type)
IsGenericTypeParameter

取得值,指出目前的 Type 是否在泛型型別的定義中代表型別參數。

(繼承來源 Type)
IsImport

取得值,指出 Type 是否套用了 ComImportAttribute 屬性 (Attribute),亦即其是否從 COM 類型程式庫匯入。

(繼承來源 Type)
IsImport

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsInterface

取得值,指出 Type 是否為介面;也就是說,不是類別或實值類型。

(繼承來源 Type)
IsInterface

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsLayoutSequential

取得表示目前類型的欄位是否已依為其定義或發出至中繼資料之順序,循序配置版面的值。

(繼承來源 Type)
IsLayoutSequential

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsMarshalByRef

取得值,指出 Type 是否以傳址方式封送處理。

(繼承來源 Type)
IsMarshalByRef

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNested

取得值,表示目前的 Type 物件代表的類型之定義是否位於另一個類型的定義內部。

(繼承來源 Type)
IsNested

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNestedAssembly

取得值,指出 Type 是否為巢狀,並只在它自己的組件內為可見。

(繼承來源 Type)
IsNestedAssembly

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNestedFamANDAssem

取得值,指出 Type 是否為巢狀,並只對同時屬於它自己家族和它自己組件的類別為可見。

(繼承來源 Type)
IsNestedFamANDAssem

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNestedFamily

取得值,指出 Type 是否為巢狀,並只在它自己的系列內為可見。

(繼承來源 Type)
IsNestedFamily

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNestedFamORAssem

取得值,指出 Type 是否為巢狀並只對屬於它自己家族或它自己組件的類別為可見。

(繼承來源 Type)
IsNestedFamORAssem

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNestedPrivate

取得值,指出 Type 是否為巢狀並且宣告為私用。

(繼承來源 Type)
IsNestedPrivate

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNestedPublic

取得值,指出類別是否為巢狀 (Nest) 並且宣告為公用 (Public)。

(繼承來源 Type)
IsNestedPublic

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsNotPublic

取得值,指出 Type 是否未宣告為公用。

(繼承來源 Type)
IsNotPublic

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsPointer

取得值,指出 Type 是否為指標。

(繼承來源 Type)
IsPointer

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsPrimitive

取得值,指出 Type 是否為其中一個基本類型 (Primitive Type)。

(繼承來源 Type)
IsPrimitive

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsPublic

取得值,指出 Type 是否宣告為公用。

(繼承來源 Type)
IsPublic

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsSealed

取得值,指出 Type 是否宣告為密封。

(繼承來源 Type)
IsSealed

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsSecurityCritical

取得值,這個值表示目前類型是否為安全性關鍵或安全性安全關鍵,因而可以執行重要的作業。

IsSecurityCritical

取得值,這個值表示目前類型在目前信任層級上是否為安全性關鍵或安全性安全關鍵,因而可以執行重要的作業。

(繼承來源 Type)
IsSecuritySafeCritical

取得值,這個值表示目前類型是否為安全性安全關鍵,也就是說,它是否能執行重要作業並由安全性透明的程式碼存取。

IsSecuritySafeCritical

取得值,這個值表示目前類型在目前信任層級上是否為安全性安全關鍵,也就是說,它是否能執行重要作業並由安全性透明的程式碼存取。

(繼承來源 Type)
IsSecurityTransparent

取得值,這個值表示目前類型是否為透明,因此無法執行重要作業。

IsSecurityTransparent

取得值,這個值表示目前類型在目前信任層級上是否為透明,因此無法執行重要作業。

(繼承來源 Type)
IsSerializable

在執行階段定義和建立類別的新執行個體。

IsSerializable
已淘汰.

取得值,指出是否 Type 可串行化二進位。

(繼承來源 Type)
IsSerializable

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsSignatureType

取得值,指出類型是否為特徵標記類型。

(繼承來源 Type)
IsSpecialName

取得值,表示類型是否具有需要特殊處理的名稱。

(繼承來源 Type)
IsSpecialName

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsSZArray

在執行階段定義和建立類別的新執行個體。

IsSZArray

取得值,指出類型是否為陣列類型,且只能代表下限為零的一維陣列。

(繼承來源 Type)
IsTypeDefinition

在執行階段定義和建立類別的新執行個體。

IsTypeDefinition

取得值,指出類型是否為類型定義。

(繼承來源 Type)
IsUnicodeClass

取得值,指出是否為 UnicodeClass 選取字串格式屬性 Type

(繼承來源 Type)
IsUnicodeClass

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsUnmanagedFunctionPointer

取得值,這個值表示目前 Type 是否為 Unmanaged 函式指標。

(繼承來源 Type)
IsValueType

取得值,指出 Type 是否為實值類型。

(繼承來源 Type)
IsValueType

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsVariableBoundArray

在執行階段定義和建立類別的新執行個體。

IsVariableBoundArray

取得值,指出類型是否為陣列類型,且可代表多維陣列或任意下限的陣列。

(繼承來源 Type)
IsVisible

取得一個值,表示位於組件之外的程式碼是否能存取 Type

(繼承來源 Type)
IsVisible

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
MemberType

取得一個 MemberTypes 值,代表這個成員是類型或巢狀類型。

(繼承來源 Type)
MemberType

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
MetadataToken

取得語彙基元,可識別中繼資料中的目前動態模組。

MetadataToken

取得值,這個值可識別中繼資料項目。

(繼承來源 MemberInfo)
Module

擷取包含這個類型定義的動態模組。

Name

擷取這個類型的名稱。

Namespace

擷取定義這個 TypeBuilder 的命名空間。

PackingSize

擷取這個類型的封裝大小。

PackingSizeCore

在衍生類別中覆寫時,取得此型別的封裝大小。

ReflectedType

傳回用來取得這個類型的類型。

ReflectedType

取得類別物件,是用來取得這個 MemberInfo 的執行個體。

(繼承來源 MemberInfo)
Size

擷取類型的總大小。

SizeCore

在衍生類別中覆寫時,取得型別的總大小。

StructLayoutAttribute

取得描述目前類型配置的 StructLayoutAttribute

(繼承來源 Type)
StructLayoutAttribute

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
TypeHandle

在動態模組中不支援。

TypeInitializer

取得類型的初始設定式。

(繼承來源 Type)
TypeInitializer

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
TypeToken

傳回這個類型的類型語彙基元。

UnderlyingSystemType

傳回這個 TypeBuilder 的基礎系統類型。

UnderlyingSystemType

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)

方法

AddDeclarativeSecurity(SecurityAction, PermissionSet)

加入此類型的宣告式安全性。

AddInterfaceImplementation(Type)

加入這個類型所實作的介面。

AddInterfaceImplementationCore(Type)

在衍生類別中覆寫時,新增此類型所實作的介面。

AsType()

Type 物件方式傳回目前類型。

(繼承來源 TypeInfo)
CreateType()

建立這個類別的 Type 物件。 定義類別上的欄位和方法之後,呼叫 CreateType 以載入其 Type 物件。

CreateTypeInfo()

取得代表這個類型的 TypeInfo 物件。

CreateTypeInfoCore()

在衍生類別中覆寫時,取得 TypeInfo 代表此型別的物件。

DefineConstructor(MethodAttributes, CallingConventions, Type[])

將新的建構函式加入此類型,並指定屬性和簽章。

DefineConstructor(MethodAttributes, CallingConventions, Type[], Type[][], Type[][])

將新的建構函式加入此類型,並指定屬性、簽章和自訂修飾詞。

DefineConstructorCore(MethodAttributes, CallingConventions, Type[], Type[][], Type[][])

在衍生類別中覆寫時,使用指定的屬性、簽章和自定義修飾詞,將新的建構函式新增至型別。

DefineDefaultConstructor(MethodAttributes)

定義無參數建構函式。 這裡所定義建構函式只會呼叫父代的無參數建構函式。

DefineDefaultConstructorCore(MethodAttributes)

在衍生類別中覆寫時,定義無參數建構函式。 這裡定義的建構函式會呼叫父系的無參數建構函式。

DefineEvent(String, EventAttributes, Type)

將新事件加入此類型,並指定其名稱、屬性和事件類型。

DefineEventCore(String, EventAttributes, Type)

在衍生類別中覆寫時,使用指定的名稱、屬性和事件類型,將新的事件新增至類型。

DefineField(String, Type, FieldAttributes)

將新欄位加入類型,指定其名稱、屬性和欄位類型。

DefineField(String, Type, Type[], Type[], FieldAttributes)

將新欄位加入此類型,並指定其名稱、屬性、欄位類型和自訂修飾詞。

DefineFieldCore(String, Type, Type[], Type[], FieldAttributes)

在衍生類別中覆寫時,使用指定的名稱、屬性、欄位類型和自定義修飾詞,將新的字段新增至類型。

DefineGenericParameters(String[])

定義目前類型的泛型類型參數,即指定其數目和名稱,並傳回可設定其條件約束的 GenericTypeParameterBuilder 物件的陣列。

DefineGenericParametersCore(String[])

在衍生類別中覆寫時,定義目前型別的泛型型別參數,並指定其編號和名稱。

DefineInitializedData(String, Byte[], FieldAttributes)

在可攜式執行檔 (PE) 的 .sdata 區段中定義初始化資料欄位。

DefineInitializedDataCore(String, Byte[], FieldAttributes)

在衍生類別中覆寫時,請在可攜式可執行檔的 .sdata 區段中定義初始化的數據字段, (PE) 檔案。

DefineMethod(String, MethodAttributes)

將新方法加入此類型,並指定其名稱和方法屬性。

DefineMethod(String, MethodAttributes, CallingConventions)

將新方法加入類型,並指定其名稱、方法屬性和呼叫慣例。

DefineMethod(String, MethodAttributes, CallingConventions, Type, Type[])

將新方法加入此類型,含指定名稱、方法屬性、呼叫慣例和方法簽章。

DefineMethod(String, MethodAttributes, CallingConventions, Type, Type[], Type[], Type[], Type[][], Type[][])

將新方法加入此類型,含指定名稱、方法屬性、呼叫慣例、方法簽章和自訂修飾詞。

DefineMethod(String, MethodAttributes, Type, Type[])

將新方法加入此類型中,含指定名稱、方法屬性和方法簽章。

DefineMethodCore(String, MethodAttributes, CallingConventions, Type, Type[], Type[], Type[], Type[][], Type[][])

在衍生類別中覆寫時,使用指定的名稱、方法屬性、呼叫慣例、方法簽章和自定義修飾詞,將新的方法新增至型別。

DefineMethodOverride(MethodInfo, MethodInfo)

指定實作給定方法宣告的給定方法主體,可能會使用其他名稱。

DefineMethodOverrideCore(MethodInfo, MethodInfo)

在衍生類別中覆寫時,指定實作指定方法宣告的指定方法主體,可能有不同的名稱。

DefineNestedType(String)

定義巢狀類型,並指定其名稱。

DefineNestedType(String, TypeAttributes)

定義巢狀類型,並指定其名稱及屬性。

DefineNestedType(String, TypeAttributes, Type)

定義巢狀類型,並指定其名稱、屬性和擴充的類型。

DefineNestedType(String, TypeAttributes, Type, Int32)

定義巢狀型別,指定其名稱、屬性、型別的總大小及其擴充的型別。

DefineNestedType(String, TypeAttributes, Type, PackingSize)

定義巢狀類型,並指定其名稱、屬性、擴充的類型和封裝大小。

DefineNestedType(String, TypeAttributes, Type, PackingSize, Int32)

定義巢狀類型,並指定其名稱、屬性、大小和擴充的類型。

DefineNestedType(String, TypeAttributes, Type, Type[])

定義巢狀類型,並指定其名稱、屬性、擴充的類型和實作的介面。

DefineNestedTypeCore(String, TypeAttributes, Type, Type[], PackingSize, Int32)

在衍生類別中覆寫時,定義巢狀類型,並指定其名稱、屬性、大小,以及其擴充的類型。

DefinePInvokeMethod(String, String, MethodAttributes, CallingConventions, Type, Type[], CallingConvention, CharSet)

定義 PInvoke 方法指定名稱、方法定義所在的 DLL 名稱、方法的屬性、方法的呼叫慣例、方法的傳回類型、方法的參數類型和 PInvoke 旗標。

DefinePInvokeMethod(String, String, String, MethodAttributes, CallingConventions, Type, Type[], CallingConvention, CharSet)

定義 PInvoke 方法指定名稱、方法定義所在的 DLL 名稱、進入點名稱、方法的屬性、方法的呼叫慣例、方法的傳回類型、方法的參數類型和 PInvoke 旗標。

DefinePInvokeMethod(String, String, String, MethodAttributes, CallingConventions, Type, Type[], Type[], Type[], Type[][], Type[][], CallingConvention, CharSet)

定義 PInvoke 方法,方法是指定其名稱、方法定義所在的 DLL 名稱、進入點名稱、方法的屬性、方法的呼叫慣例、方法的傳回類型、方法的參數類型、PInvoke 旗標和這些參數與傳回類型的自訂修飾詞。

DefinePInvokeMethodCore(String, String, String, MethodAttributes, CallingConventions, Type, Type[], Type[], Type[], Type[][], Type[][], CallingConvention, CharSet)

在衍生類別中覆寫時,使用提供的名稱、DLL 名稱、進入點名稱、屬性、呼叫慣例、傳回型別、參數類型、PInvoke 旗標的類型,以及參數和傳回型別的自定義修飾詞來定義 PInvoke 方法。

DefineProperty(String, PropertyAttributes, CallingConventions, Type, Type[])

將新屬性加入具有指定名稱、屬性、呼叫慣例和屬性簽章的類型。

DefineProperty(String, PropertyAttributes, CallingConventions, Type, Type[], Type[], Type[], Type[][], Type[][])

將新屬性加入具有指定名稱、呼叫慣例、屬性簽章和自訂修飾詞的類型。

DefineProperty(String, PropertyAttributes, Type, Type[])

以指定名稱和屬性簽章將新屬性加入此類型。

DefineProperty(String, PropertyAttributes, Type, Type[], Type[], Type[], Type[][], Type[][])

將新屬性加入具有指定名稱、屬性簽章和自訂修飾詞的類型。

DefinePropertyCore(String, PropertyAttributes, CallingConventions, Type, Type[], Type[], Type[], Type[][], Type[][])

在衍生類別中覆寫時,使用指定的名稱、呼叫慣例、屬性簽章和自定義修飾詞,將新的屬性新增至型別。

DefineTypeInitializer()

定義這個類型的初始設定式。

DefineTypeInitializerCore()

在衍生類別中覆寫時,定義此類型的初始化表達式。

DefineUninitializedData(String, Int32, FieldAttributes)

在可攜式執行檔 (PE) 的 .sdata 區段中定義未初始化的資料欄位。

DefineUninitializedDataCore(String, Int32, FieldAttributes)

在衍生類別中覆寫時,請在可攜式可執行檔的 區段中定義未初始化的數據欄位 .sdata , (PE) 檔案。

Equals(Object)

判斷目前 Type 物件的基礎系統類型,是否與指定的 Object 的基礎系統類型相同。

(繼承來源 Type)
Equals(Object)

傳回值,這個值指出此執行個體是否與指定的物件相等。

(繼承來源 MemberInfo)
Equals(Type)

判斷目前 Type 的基礎系統類型,是否與指定的 Type 之基礎系統類型相同。

(繼承來源 Type)
FindInterfaces(TypeFilter, Object)

傳回 Type 物件的陣列,表示由目前 Type 所實作或繼承的介面的篩選清單。

(繼承來源 Type)
FindInterfaces(TypeFilter, Object)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
FindMembers(MemberTypes, BindingFlags, MemberFilter, Object)

傳回指定成員類型的 MemberInfo 物件的篩選陣列。

(繼承來源 Type)
FindMembers(MemberTypes, BindingFlags, MemberFilter, Object)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetArrayRank()

在執行階段定義和建立類別的新執行個體。

GetArrayRank()

取得陣列中的維度數目。

(繼承來源 Type)
GetArrayRank()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetAttributeFlagsImpl()

在衍生類別中覆寫時,實作 Attributes 屬性 (Property) 並取得列舉值的位元組合,以指出與 Type 建立關聯的屬性 (Attribute)。

GetAttributeFlagsImpl()

在衍生類別中覆寫時,實作 Attributes 屬性 (Property) 並取得列舉值的位元組合,以指出與 Type 建立關聯的屬性 (Attribute)。

(繼承來源 Type)
GetConstructor(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

使用指定的繫結條件約束和指定的呼叫慣例,搜尋其參數符合指定的引數類型和修飾詞的建構函式。

(繼承來源 Type)
GetConstructor(BindingFlags, Binder, Type[], ParameterModifier[])

使用指定的繫結條件約束 (Constraint) 搜尋其參數符合指定的引數類型和修飾詞 (Modifier) 的建構函式。

(繼承來源 Type)
GetConstructor(BindingFlags, Type[])

使用指定的系結條件約束,搜尋參數符合指定自變數類型的建構函式。

(繼承來源 Type)
GetConstructor(Type, ConstructorInfo)

傳回指定建構泛型類型的建構函式,其對應於泛型類型定義的指定建構函式。

GetConstructor(Type[])

搜尋其參數符合在指定陣列中的類型的公用執行個體建構函式。

(繼承來源 Type)
GetConstructor(Type[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetConstructorImpl(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結條件約束和指定的呼叫慣例,搜尋其參數符合指定的引數類型和修飾詞的建構函式。

GetConstructorImpl(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結條件約束和指定的呼叫慣例,搜尋其參數符合指定的引數類型和修飾詞的建構函式。

(繼承來源 Type)
GetConstructors()

傳回所有定義給目前 Type 的公用建構函式。

(繼承來源 Type)
GetConstructors()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetConstructors(BindingFlags)

依指定傳回 ConstructorInfo 物件的陣列,代表為這個類別所定義的公用和非公用建構函式。

GetConstructors(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetCustomAttributes(Boolean)

傳回為這個類型定義的所有自訂屬性。

GetCustomAttributes(Boolean)

在衍生類別中覆寫時,傳回套用至此成員之所有自訂屬性的陣列。

(繼承來源 MemberInfo)
GetCustomAttributes(Type, Boolean)

傳回可指派給指定類型之目前類型的所有自訂屬性。

GetCustomAttributes(Type, Boolean)

當在衍生的類別中覆寫時,會傳回套用至這個成員的自訂屬性陣列,並以 Type 識別。

(繼承來源 MemberInfo)
GetCustomAttributesData()

傳回 CustomAttributeData 物件的清單,表示已套用至目標成員之屬性的資料。

(繼承來源 MemberInfo)
GetDeclaredEvent(String)

傳回 物件,表示目前型別所宣告的指定事件。

(繼承來源 TypeInfo)
GetDeclaredField(String)

傳回 物件,表示目前型別所宣告的指定欄位。

(繼承來源 TypeInfo)
GetDeclaredMethod(String)

傳回 物件,表示目前型別所宣告的指定方法。

(繼承來源 TypeInfo)
GetDeclaredMethods(String)

傳回集合,其中包含符合指定名稱之目前型別上宣告的所有方法。

(繼承來源 TypeInfo)
GetDeclaredNestedType(String)

傳回 物件,表示目前型別所宣告的指定巢狀類型。

(繼承來源 TypeInfo)
GetDeclaredProperty(String)

傳回 物件,表示目前型別所宣告的指定屬性。

(繼承來源 TypeInfo)
GetDefaultMembers()

搜尋定義給目前 Type 的成員,而它的 DefaultMemberAttribute 已設定。

(繼承來源 Type)
GetDefaultMembers()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetElementType()

呼叫這個方法一律會擲回 NotSupportedException

GetEnumName(Object)

針對目前的列舉類型,傳回具有指定值之常數的名稱。

(繼承來源 Type)
GetEnumName(Object)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEnumNames()

傳回目前列舉類型之成員的名稱。

(繼承來源 Type)
GetEnumNames()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEnumUnderlyingType()

傳回目前列舉類型的基礎類型。

(繼承來源 Type)
GetEnumUnderlyingType()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEnumValues()

傳回目前列舉類型中常數的值陣列。

(繼承來源 Type)
GetEnumValues()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEnumValuesAsUnderlyingType()

擷取這個列舉型別之基礎類型常數之值的陣列。

(繼承來源 Type)
GetEvent(String)

傳回代表指定公用事件的 EventInfo 物件。

(繼承來源 Type)
GetEvent(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEvent(String, BindingFlags)

傳回具有指定名稱的事件。

GetEvent(String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEvents()

傳回由這個方法所宣告或繼承的公用事件。

GetEvents()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetEvents(BindingFlags)

傳回這個類型所宣告的公用和非公用事件。

GetEvents(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetField(String)

搜尋具有指定名稱的公用欄位。

(繼承來源 Type)
GetField(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetField(String, BindingFlags)

傳回指定之名稱所指定的欄位。

GetField(String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetField(Type, FieldInfo)

傳回對應至泛型類型定義指定欄位的指定建構泛型類型的欄位。

GetFields()

傳回目前 Type 的所有公用欄位。

(繼承來源 Type)
GetFields()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetFields(BindingFlags)

傳回這個類型所宣告的公用和非公用欄位。

GetFields(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetFunctionPointerCallingConventions()

在衍生類別中覆寫時,傳回目前函式指標 Type的呼叫慣例。

(繼承來源 Type)
GetFunctionPointerParameterTypes()

在衍生類別中覆寫時,傳回目前函式指標 Type的參數型別。

(繼承來源 Type)
GetFunctionPointerReturnType()

在衍生類別中覆寫時,傳回目前函式指標 Type的傳回型別。

(繼承來源 Type)
GetGenericArguments()

傳回 Type 物件的陣列,這些物件代表泛型類型的型別引數,或泛型類型定義的型別參數。

GetGenericArguments()

傳回 Type 物件的陣列,代表封閉泛型類型的類型引數,或泛型類型定義的類型參數。

(繼承來源 Type)
GetGenericArguments()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetGenericParameterConstraints()

在執行階段定義和建立類別的新執行個體。

GetGenericParameterConstraints()

傳回由 Type 物件組成的陣列,這些物件代表對目前泛型類型參數所設下的條件約束。

(繼承來源 Type)
GetGenericParameterConstraints()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetGenericTypeDefinition()

傳回 Type 物件,代表可從中取得目前類型的泛型類型定義。

GetGenericTypeDefinition()

傳回代表泛型類型定義的 Type 物件,利用此泛型類型定義就可以建構出目前的泛型類型。

(繼承來源 Type)
GetHashCode()

傳回這個執行個體的雜湊碼。

(繼承來源 Type)
GetHashCode()

傳回這個執行個體的雜湊碼。

(繼承來源 MemberInfo)
GetInterface(String)

搜尋具有指定名稱的介面。

(繼承來源 Type)
GetInterface(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetInterface(String, Boolean)

傳回此類別所 (直接或間接) 實作的介面,且完整格式名稱符合指定的介面名稱。

GetInterface(String, Boolean)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetInterfaceMap(Type)

傳回所要求介面的介面對應。

GetInterfaces()

傳回在這個類型及其基底類型上實作之所有介面的陣列。

GetInterfaces()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMember(String)

搜尋具有指定名稱的公用成員。

(繼承來源 Type)
GetMember(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMember(String, BindingFlags)

使用指定的繫結條件約束搜尋指定的成員。

(繼承來源 Type)
GetMember(String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMember(String, MemberTypes, BindingFlags)

依指定傳回此類型所宣告或繼承的所有公用和非公用成員。

GetMember(String, MemberTypes, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMembers()

傳回目前 Type 的所有公用成員。

(繼承來源 Type)
GetMembers()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMembers(BindingFlags)

傳回這個類型所宣告或繼承的公用和非公用成員之成員。

GetMembers(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMemberWithSameMetadataDefinitionAs(MemberInfo)

在符合指定 MemberInfo之的目前 Type 上搜尋 MemberInfo

(繼承來源 Type)
GetMethod(String)

搜尋具有指定名稱的公用方法。

(繼承來源 Type)
GetMethod(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMethod(String, BindingFlags)

使用指定的繫結條件約束搜尋指定的方法。

(繼承來源 Type)
GetMethod(String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

使用指定的繫結條件約束和指定的呼叫慣例,來搜尋指定的方法,而該方法的參數符合指定的引數類型和修飾詞。

(繼承來源 Type)
GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

使用指定的繫結條件約束搜尋指定的方法,而該方法的參數符合指定的引數類型和修飾詞。

(繼承來源 Type)
GetMethod(String, BindingFlags, Type[])

使用指定的系結條件約束,搜尋指定的方法,其參數符合指定的自變數類型。

(繼承來源 Type)
GetMethod(String, Int32, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

使用指定的繫結限制式和指定的呼叫慣例來搜尋指定的方法,其參數符合指定的泛型參數計數、引數型別及修飾元。

(繼承來源 Type)
GetMethod(String, Int32, BindingFlags, Binder, Type[], ParameterModifier[])

使用指定的繫結限制式來搜尋指定的方法,其參數符合指定的泛型參數計數、引數型別及修飾元。

(繼承來源 Type)
GetMethod(String, Int32, BindingFlags, Type[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 Type)
GetMethod(String, Int32, Type[])

搜尋指定的公用方法,其參數符合指定的泛型參數計數和引數型別。

(繼承來源 Type)
GetMethod(String, Int32, Type[], ParameterModifier[])

搜尋指定的公用方法,其參數符合指定的泛型參數計數、引數型別及修飾元。

(繼承來源 Type)
GetMethod(String, Type[])

搜尋指定的公用方法,其參數符合指定的引數類型。

(繼承來源 Type)
GetMethod(String, Type[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMethod(String, Type[], ParameterModifier[])

搜尋指定的公用方法,其參數符合指定的引數類型和修飾詞。

(繼承來源 Type)
GetMethod(String, Type[], ParameterModifier[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMethod(Type, MethodInfo)

傳回對應至泛型類型定義指定方法的指定建構泛型類型的方法。

GetMethodImpl(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結條件約束和指定的呼叫慣例搜尋指定的方法,而該方法的參數符合指定的引數類型和修飾詞。

GetMethodImpl(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結條件約束和指定的呼叫慣例搜尋指定的方法,而該方法的參數符合指定的引數類型和修飾詞。

(繼承來源 Type)
GetMethodImpl(String, Int32, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結限制式和指定的呼叫慣例來搜尋指定的方法,其參數符合指定的泛型參數計數、引數型別及修飾元。

(繼承來源 Type)
GetMethods()

傳回目前 Type 的所有公用方法。

(繼承來源 Type)
GetMethods()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetMethods(BindingFlags)

依指定傳回此類型所宣告或繼承的所有公用和非公用方法。

GetMethods(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetNestedType(String)

搜尋具有指定名稱的公用巢狀類型。

(繼承來源 Type)
GetNestedType(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetNestedType(String, BindingFlags)

傳回這個類型所宣告的公用和非公用巢狀類型。

GetNestedType(String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetNestedTypes()

傳回在目前 Type 內形成巢狀的公用類型。

(繼承來源 Type)
GetNestedTypes()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetNestedTypes(BindingFlags)

傳回這個類型所宣告或繼承的公用和非公用巢狀類型。

GetNestedTypes(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetOptionalCustomModifiers()

在衍生類別中覆寫時,傳回目前 Type的選擇性自定義修飾詞。

(繼承來源 Type)
GetProperties()

傳回目前 Type 的所有公用屬性。

(繼承來源 Type)
GetProperties()

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperties(BindingFlags)

依指定傳回這個類型所宣告或繼承的所有公用和非公用屬性。

GetProperties(BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperty(String)

搜尋具有指定名稱的公用屬性。

(繼承來源 Type)
GetProperty(String)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperty(String, BindingFlags)

使用指定的繫結條件約束搜尋指定的屬性。

(繼承來源 Type)
GetProperty(String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

使用指定的繫結條件約束搜尋指定的屬性,而該屬性的參數符合指定的引數類型和修飾詞。

(繼承來源 Type)
GetProperty(String, Type)

搜尋具有指定名稱和傳回類型的公用屬性。

(繼承來源 Type)
GetProperty(String, Type)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperty(String, Type, Type[])

搜尋指定的公用屬性,其參數符合指定的引數類型。

(繼承來源 Type)
GetProperty(String, Type, Type[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperty(String, Type, Type[], ParameterModifier[])

搜尋指定的公用屬性,其參數符合指定的引數類型和修飾詞。

(繼承來源 Type)
GetProperty(String, Type, Type[], ParameterModifier[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetProperty(String, Type[])

搜尋指定的公用屬性,其參數符合指定的引數類型。

(繼承來源 Type)
GetProperty(String, Type[])

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
GetPropertyImpl(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結條件約束搜尋指定的屬性,而該屬性的參數符合指定的引數類型和修飾詞的建構函式。

GetPropertyImpl(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

在衍生類別中覆寫時,使用指定的繫結條件約束搜尋指定的屬性,而該屬性的參數符合指定的引數類型和修飾詞的建構函式。

(繼承來源 Type)
GetRequiredCustomModifiers()

在衍生類別中覆寫時,傳回目前 Type的必要自定義修飾詞。

(繼承來源 Type)
GetType()

取得目前的 Type

(繼承來源 Type)
GetType()

探索成員的屬性並提供成員中繼資料的存取。

(繼承來源 MemberInfo)
GetTypeCodeImpl()

傳回此 Type 執行個體的基礎型別碼。

(繼承來源 Type)
HasElementTypeImpl()

在衍生類別中覆寫時,實作 HasElementType 屬性並判斷目前 Type 是否內含或參考其他類型;也就是說,目前 Type 是否為陣列、指標或以傳址方式傳遞。

HasElementTypeImpl()

在衍生類別中覆寫時,實作 HasElementType 屬性並判斷目前 Type 是否內含或參考其他類型;也就是說,目前 Type 是否為陣列、指標或以傳址方式傳遞。

(繼承來源 Type)
HasSameMetadataDefinitionAs(MemberInfo)

在執行階段定義和建立類別的新執行個體。

(繼承來源 MemberInfo)
InvokeMember(String, BindingFlags, Binder, Object, Object[])

使用指定的繫結條件約束並符合指定的引數清單,來叫用指定的成員。

(繼承來源 Type)
InvokeMember(String, BindingFlags, Binder, Object, Object[], CultureInfo)

使用指定的繫結條件約束並符合指定的引數清單和文化特性 (Culture) 來叫用指定的成員。

(繼承來源 Type)
InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])

叫用指定的成員。 根據指定繫結器和引動過程屬性的條件約束,所要叫用的方法必須可存取,並提供與指定引數清單最特定的符合項目。

IsArrayImpl()

在衍生類別中覆寫時,實作 IsArray 屬性並判斷 Type 是否為陣列。

IsArrayImpl()

在衍生類別中覆寫時,實作 IsArray 屬性並判斷 Type 是否為陣列。

(繼承來源 Type)
IsAssignableFrom(Type)

取得值,指出是否可以將指定的 Type 指派給這個物件。

IsAssignableFrom(Type)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsAssignableFrom(TypeInfo)

取得值,指出是否可以將指定的 TypeInfo 物件指派給這個物件。

IsAssignableTo(Type)

判斷現有類型是否可以指派至指定 targetType的變數。

(繼承來源 Type)
IsByRefImpl()

在衍生類別中覆寫時,實作 IsByRef 屬性並判斷 Type 是否以傳址方式傳遞。

IsByRefImpl()

在衍生類別中覆寫時,實作 IsByRef 屬性並判斷 Type 是否以傳址方式傳遞。

(繼承來源 Type)
IsCOMObjectImpl()

在衍生類別中覆寫時,實作 IsCOMObject 屬性並判斷 Type 是否為 COM 物件。

IsCOMObjectImpl()

在衍生類別中覆寫時,實作 IsCOMObject 屬性並判斷 Type 是否為 COM 物件。

(繼承來源 Type)
IsContextfulImpl()

實作 IsContextful 屬性並判斷在內容中是否可以裝載 Type

(繼承來源 Type)
IsCreated()

傳回表示是否已建立目前動態類型的值。

IsCreatedCore()

在衍生類別中覆寫時,傳回值,指出是否已建立目前的動態類型。

IsDefined(Type, Boolean)

決定是否要將自訂屬性套用至目前的類型。

IsDefined(Type, Boolean)

在衍生類別中覆寫時,表示是否已有一個或多個具有指定型別或其衍生型別的屬性套用至這個成員。

(繼承來源 MemberInfo)
IsEnumDefined(Object)

傳回值,這個值表示指定的值是否存在於目前的列舉類型中。

(繼承來源 Type)
IsEnumDefined(Object)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsEquivalentTo(Type)

判斷兩個 COM 類型是否具有相同的識別以及是否適合類型等價。

(繼承來源 Type)
IsEquivalentTo(Type)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsInstanceOfType(Object)

判斷指定的物件是否為目前 Type 的執行個體。

(繼承來源 Type)
IsInstanceOfType(Object)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsMarshalByRefImpl()

實作 IsMarshalByRef 屬性,判斷 Type 是否以傳址方式封送處理。

(繼承來源 Type)
IsPointerImpl()

在衍生類別中覆寫時,實作 IsPointer 屬性並判斷 Type 是否為指標。

IsPointerImpl()

在衍生類別中覆寫時,實作 IsPointer 屬性並判斷 Type 是否為指標。

(繼承來源 Type)
IsPrimitiveImpl()

在衍生類別中覆寫時,實作 IsPrimitive 屬性並判斷 Type 是否為其中一個基本類型。

IsPrimitiveImpl()

在衍生類別中覆寫時,實作 IsPrimitive 屬性並判斷 Type 是否為其中一個基本類型。

(繼承來源 Type)
IsSubclassOf(Type)

判斷此類型是否衍生自指定的類型。

IsSubclassOf(Type)

在執行階段定義和建立類別的新執行個體。

(繼承來源 TypeInfo)
IsValueTypeImpl()

實作 IsValueType 屬性並判斷 Type 是否為實值類型;也就是說,不是類別或介面。

(繼承來源 Type)
MakeArrayType()

傳回 Type 物件,代表由目前類型組成的一維陣列,其下限為零。

MakeArrayType()

傳回 Type 物件,代表由目前類型組成的一維陣列,其下限為零。

(繼承來源 Type)
MakeArrayType(Int32)

傳回 Type 物件,代表由目前類型組成且為指定維度個數的陣列。

MakeArrayType(Int32)

傳回 Type 物件,代表由目前類型組成且為指定維度個數的陣列。

(繼承來源 Type)
MakeByRefType()

傳回 Type 物件,當做 ref 參數 (在 Visual Basic 中為ByRef ) 傳遞時,代表目前的類型。

MakeByRefType()

傳回 Type 物件,當做 ref (Visual Basic 中的 ByRef) 參數傳遞時,代表目前的類型。

(繼承來源 Type)
MakeGenericType(Type[])

用類型陣列的項目取代目前泛型類型定義的類型參數,並傳回產生的建構類型。

MakeGenericType(Type[])

用類型陣列的項目取代目前泛型類型定義的型別參數,並傳回代表所得結果建構類型的 Type 物件。

(繼承來源 Type)
MakePointerType()

傳回 Type 物件,代表指向目前類型之 Unmanaged 指標的類型。

MakePointerType()

傳回 Type 物件,代表指向目前類型的指標。

(繼承來源 Type)
MemberwiseClone()

建立目前 Object 的淺層複製。

(繼承來源 Object)
SetCustomAttribute(ConstructorInfo, Byte[])

使用指定的自訂屬性 Blob 來設定自訂屬性。

SetCustomAttribute(CustomAttributeBuilder)

使用自訂屬性產生器來設定自訂屬性。

SetCustomAttributeCore(ConstructorInfo, ReadOnlySpan<Byte>)

在衍生類別中覆寫時,在此元件上設定自定義屬性。

SetParent(Type)

設定目前建構中之類型的基底類型。

SetParentCore(Type)

在衍生類別中覆寫時,設定目前建構中型別的基底型別。

ToString()

傳回不含命名空間的類型名稱。

明確介面實作

_MemberInfo.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

將一組名稱對應至一組對應的分派識別項 (Dispatch Identifier)。

(繼承來源 MemberInfo)
_MemberInfo.GetType()

取得 Type 物件,表示 MemberInfo 類別。

(繼承來源 MemberInfo)
_MemberInfo.GetTypeInfo(UInt32, UInt32, IntPtr)

擷取物件的類型資訊,可以用來取得介面的類型資訊。

(繼承來源 MemberInfo)
_MemberInfo.GetTypeInfoCount(UInt32)

擷取物件提供的類型資訊介面數目 (0 或 1)。

(繼承來源 MemberInfo)
_MemberInfo.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供物件所公開的屬性和方法的存取權。

(繼承來源 MemberInfo)
_Type.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

將一組名稱對應至一組對應的分派識別項 (Dispatch Identifier)。

(繼承來源 Type)
_Type.GetTypeInfo(UInt32, UInt32, IntPtr)

擷取物件的類型資訊,可以用來取得介面的類型資訊。

(繼承來源 Type)
_Type.GetTypeInfoCount(UInt32)

擷取物件提供的類型資訊介面數目 (0 或 1)。

(繼承來源 Type)
_Type.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供物件所公開的屬性和方法的存取權。

(繼承來源 Type)
_TypeBuilder.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

將一組名稱對應至一組對應的分派識別項 (Dispatch Identifier)。

_TypeBuilder.GetTypeInfo(UInt32, UInt32, IntPtr)

擷取物件的類型資訊,可以用來取得介面的類型資訊。

_TypeBuilder.GetTypeInfoCount(UInt32)

擷取物件提供的類型資訊介面數目 (0 或 1)。

_TypeBuilder.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供物件所公開的屬性和方法的存取權。

ICustomAttributeProvider.GetCustomAttributes(Boolean)

傳回這個成員中定義的所有自訂屬性的陣列 (但具名屬性除外),如果沒有自訂屬性,則傳回空陣列。

(繼承來源 MemberInfo)
ICustomAttributeProvider.GetCustomAttributes(Type, Boolean)

傳回這個成員中定義的自訂屬性陣列 (依類型識別),如果沒有該類型的自訂屬性,則傳回空陣列。

(繼承來源 MemberInfo)
ICustomAttributeProvider.IsDefined(Type, Boolean)

指出此成員上是否有定義一個或多個 attributeType 執行個體。

(繼承來源 MemberInfo)
IReflectableType.GetTypeInfo()

TypeInfo 物件形式傳回目前類型的表示。

(繼承來源 TypeInfo)

擴充方法

GetCustomAttribute(MemberInfo, Type)

擷取指定型別的自訂屬性,此屬性套用至指定成員。

GetCustomAttribute(MemberInfo, Type, Boolean)

擷取只訂型別的自訂屬性,此屬性套用至指定成員,並且可選擇性檢查該成員的祖系。

GetCustomAttribute<T>(MemberInfo)

擷取指定型別的自訂屬性,此屬性套用至指定成員。

GetCustomAttribute<T>(MemberInfo, Boolean)

擷取只訂型別的自訂屬性,此屬性套用至指定成員,並且可選擇性檢查該成員的祖系。

GetCustomAttributes(MemberInfo)

擷取套用至指定成員的自訂屬性集合。

GetCustomAttributes(MemberInfo, Boolean)

擷取自訂屬性集合,此集合套用至指定成員,並且可選擇性檢查該成員的祖系。

GetCustomAttributes(MemberInfo, Type)

擷取指定型別的自訂屬性集合,此集合套用至指定成員。

GetCustomAttributes(MemberInfo, Type, Boolean)

擷取指定型別的自訂屬性集合,此集合套用至指定成員,並且可選擇性檢查該成員的祖系。

GetCustomAttributes<T>(MemberInfo)

擷取指定型別的自訂屬性集合,此集合套用至指定成員。

GetCustomAttributes<T>(MemberInfo, Boolean)

擷取指定型別的自訂屬性集合,此集合套用至指定成員,並且可選擇性檢查該成員的祖系。

IsDefined(MemberInfo, Type)

指出是否將所指定型別的自訂屬性套用至指定的成員。

IsDefined(MemberInfo, Type, Boolean)

指出指定之型別的自訂屬性是否會套用至指定的成員,以及選擇性地套用到其上階。

GetTypeInfo(Type)

傳回指定之型別的 TypeInfo 表示。

GetMetadataToken(MemberInfo)

取得指定成員的中繼資料語彙基元 (如果有)。

HasMetadataToken(MemberInfo)

傳回值,指出所指定成員是否有可用的中繼資料語彙基元。

GetRuntimeEvent(Type, String)

擷取表示指定之事件的物件。

GetRuntimeEvents(Type)

擷取集合,表示指定的型別所定義的所有事件。

GetRuntimeField(Type, String)

擷取表示指定之欄位的物件。

GetRuntimeFields(Type)

擷取集合,表示指定的型別所定義的所有欄位。

GetRuntimeInterfaceMap(TypeInfo, Type)

傳回指定型別和指定介面的介面對應。

GetRuntimeMethod(Type, String, Type[])

擷取表示指定之方法的物件。

GetRuntimeMethods(Type)

擷取集合,表示指定的型別所定義的所有方法。

GetRuntimeProperties(Type)

擷取集合,表示指定的型別所定義的所有屬性。

GetRuntimeProperty(Type, String)

擷取表示指定之屬性的物件。

GetConstructor(Type, Type[])

在執行階段定義和建立類別的新執行個體。

GetConstructors(Type)

在執行階段定義和建立類別的新執行個體。

GetConstructors(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetDefaultMembers(Type)

在執行階段定義和建立類別的新執行個體。

GetEvent(Type, String)

在執行階段定義和建立類別的新執行個體。

GetEvent(Type, String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetEvents(Type)

在執行階段定義和建立類別的新執行個體。

GetEvents(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetField(Type, String)

在執行階段定義和建立類別的新執行個體。

GetField(Type, String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetFields(Type)

在執行階段定義和建立類別的新執行個體。

GetFields(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetGenericArguments(Type)

在執行階段定義和建立類別的新執行個體。

GetInterfaces(Type)

在執行階段定義和建立類別的新執行個體。

GetMember(Type, String)

在執行階段定義和建立類別的新執行個體。

GetMember(Type, String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetMembers(Type)

在執行階段定義和建立類別的新執行個體。

GetMembers(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetMethod(Type, String)

在執行階段定義和建立類別的新執行個體。

GetMethod(Type, String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetMethod(Type, String, Type[])

在執行階段定義和建立類別的新執行個體。

GetMethods(Type)

在執行階段定義和建立類別的新執行個體。

GetMethods(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetNestedType(Type, String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetNestedTypes(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetProperties(Type)

在執行階段定義和建立類別的新執行個體。

GetProperties(Type, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetProperty(Type, String)

在執行階段定義和建立類別的新執行個體。

GetProperty(Type, String, BindingFlags)

在執行階段定義和建立類別的新執行個體。

GetProperty(Type, String, Type)

在執行階段定義和建立類別的新執行個體。

GetProperty(Type, String, Type, Type[])

在執行階段定義和建立類別的新執行個體。

IsAssignableFrom(Type, Type)

在執行階段定義和建立類別的新執行個體。

IsInstanceOfType(Type, Object)

在執行階段定義和建立類別的新執行個體。

適用於

另請參閱