FieldBuilderとは? わかりやすく解説

FieldBuilder クラス

フィールドを定義および表現します。このクラス継承できません。

名前空間: System.Reflection.Emit
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ClassInterfaceAttribute(ClassInterfaceType.None)> _
<ComVisibleAttribute(True)> _
Public NotInheritable Class
 FieldBuilder
    Inherits FieldInfo
    Implements _FieldBuilder
[ClassInterfaceAttribute(ClassInterfaceType.None)] 
[ComVisibleAttribute(true)] 
public sealed class FieldBuilder : FieldInfo,
 _FieldBuilder
[ClassInterfaceAttribute(ClassInterfaceType::None)] 
[ComVisibleAttribute(true)] 
public ref class FieldBuilder sealed : public
 FieldInfo, _FieldBuilder
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.None) */ 
/** @attribute ComVisibleAttribute(true) */ 
public final class FieldBuilder extends FieldInfo
 implements _FieldBuilder
ClassInterfaceAttribute(ClassInterfaceType.None) 
ComVisibleAttribute(true) 
public final class FieldBuilder extends
 FieldInfo implements _FieldBuilder
解説解説
メモメモ

このクラス適用される HostProtectionAttribute 属性Resources プロパティの値は、MayLeakOnAbort です。HostProtectionAttribute は、デスクトップ アプリケーション (一般的にはアイコンダブルクリックコマンド入力、またはブラウザURL入力して起動するアプリケーション) には影響しません。詳細については、HostProtectionAttribute クラストピックまたは「SQL Server プログラミングホスト保護属性」を参照してください

DefineField、DefineInitializedData、または DefineUninitializedData を呼び出してFieldBuilderインスタンス取得します

メモメモ

SetValue メソッドは、現在サポートされていません。代替手段としては、終了型にリフレクションして FieldInfo を取得し、SetValue を呼び出してフィールドの値を設定します

使用例使用例

FieldBuilder使用方法については、次のコード例参照してください

Imports System
Imports System.Threading
Imports System.Reflection
Imports System.Reflection.Emit
Imports System.Security.Permissions

Public Class FieldBuilder_Sample
   Private Shared Function
 CreateType(currentDomain As AppDomain) As
 Type

      ' Create an assembly.
      Dim myAssemblyName As New
 AssemblyName()
      myAssemblyName.Name = "DynamicAssembly"
      Dim myAssembly As AssemblyBuilder = currentDomain.DefineDynamicAssembly(myAssemblyName,
 _
                                                AssemblyBuilderAccess.Run)
      ' Create a dynamic module in Dynamic Assembly.
      Dim myModuleBuilder As ModuleBuilder
 = myAssembly.DefineDynamicModule("MyModule")
      ' Define a public class named "MyClass" in the assembly.
      Dim myTypeBuilder As TypeBuilder = myModuleBuilder.DefineType("MyClass",
 _
                                          TypeAttributes.Public)
      ' Define a private String field named "MyField" in the
 type.
      Dim myFieldBuilder As FieldBuilder =
 myTypeBuilder.DefineField("MyField", _
                  GetType(String), FieldAttributes.Private
 Or FieldAttributes.Static)
      ' Create the constructor.
      Dim constructorArgs As Type() = {GetType(String)}
      Dim constructor As ConstructorBuilder
 = _
                  myTypeBuilder.DefineConstructor(MethodAttributes.Public, _
                           CallingConventions.Standard, constructorArgs)
      Dim constructorIL As ILGenerator = constructor.GetILGenerator()
      constructorIL.Emit(OpCodes.Ldarg_0)
      Dim superConstructor As ConstructorInfo
 = GetType(Object).GetConstructor(New
 Type() {})
      constructorIL.Emit(OpCodes.Call, superConstructor)
      constructorIL.Emit(OpCodes.Ldarg_0)
      constructorIL.Emit(OpCodes.Ldarg_1)
      constructorIL.Emit(OpCodes.Stfld, myFieldBuilder)
      constructorIL.Emit(OpCodes.Ret)

      ' Create the MyMethod method.
      Dim myMethodBuilder As MethodBuilder
 = myTypeBuilder.DefineMethod("MyMethod",  _
                        MethodAttributes.Public, GetType(String),
 Nothing)
      Dim methodIL As ILGenerator = myMethodBuilder.GetILGenerator()
      methodIL.Emit(OpCodes.Ldarg_0)
      methodIL.Emit(OpCodes.Ldfld, myFieldBuilder)
      methodIL.Emit(OpCodes.Ret)
      Console.WriteLine("Name               :" + myFieldBuilder.Name)
      Console.WriteLine("DeclaringType      :" + myFieldBuilder.DeclaringType.ToString())
      Console.WriteLine("Type               :" + myFieldBuilder.FieldType.ToString())
      Console.WriteLine("Token              :" + myFieldBuilder.GetToken().Token.ToString())
      Return myTypeBuilder.CreateType()
   End Function 'CreateType

   <PermissionSetAttribute(SecurityAction.Demand, Name:="FullTrust")>
 _
   Public Shared Sub Main()
      Try
         Dim myType As Type = CreateType(Thread.GetDomain())
         ' Create an instance of the "HelloWorld" class.
         Dim helloWorld As Object
 = Activator.CreateInstance(myType, New Object()
 {"HelloWorld"})
         ' Invoke the "MyMethod" method of the "MyClass"
 class.
         Dim myObject As Object
 = myType.InvokeMember("MyMethod", _
                     BindingFlags.InvokeMethod, Nothing, helloWorld,
 Nothing)
         Console.WriteLine("MyClass.MyMethod returned: "
 & Microsoft.VisualBasic.Chr(34) & myObject  & Microsoft.VisualBasic.Chr(34)
 )
     Catch e as Exception
            Console.WriteLine("Exception Caught "+e.Message)
     End Try
   End Sub 'Main
End Class 'FieldBuilder_Sample
using System;
using System.Threading;
using System.Reflection;
using System.Reflection.Emit;
using System.Security.Permissions;

public class FieldBuilder_Sample
{
   private static Type CreateType(AppDomain
 currentDomain)
   {

      // Create an assembly.
      AssemblyName myAssemblyName = new AssemblyName();
      myAssemblyName.Name = "DynamicAssembly";
      AssemblyBuilder myAssembly =
                     currentDomain.DefineDynamicAssembly(myAssemblyName,AssemblyBuilderAccess.Run);
      // Create a dynamic module in Dynamic Assembly.
      ModuleBuilder myModuleBuilder=myAssembly.DefineDynamicModule("MyModule");
      // Define a public class named "MyClass" in the assembly.
      TypeBuilder myTypeBuilder= myModuleBuilder.DefineType("MyClass",TypeAttributes.Public);

      // Define a private String field named "MyField" in
 the type.
      FieldBuilder myFieldBuilder= myTypeBuilder.DefineField("MyField"
,
          typeof(string),FieldAttributes.Private|FieldAttributes.Static);
      // Create the constructor.
      Type[] constructorArgs = { typeof(String) };
      ConstructorBuilder constructor = myTypeBuilder.DefineConstructor(
         MethodAttributes.Public, CallingConventions.Standard, constructorArgs);
      ILGenerator constructorIL = constructor.GetILGenerator();
      constructorIL.Emit(OpCodes.Ldarg_0);
      ConstructorInfo superConstructor = typeof(Object).GetConstructor(new
 Type[0]);
      constructorIL.Emit(OpCodes.Call, superConstructor);
      constructorIL.Emit(OpCodes.Ldarg_0);
      constructorIL.Emit(OpCodes.Ldarg_1);
      constructorIL.Emit(OpCodes.Stfld, myFieldBuilder);
      constructorIL.Emit(OpCodes.Ret);

      // Create the MyMethod method.
      MethodBuilder myMethodBuilder= myTypeBuilder.DefineMethod("MyMethod"
,
                           MethodAttributes.Public,typeof(String),null);
      ILGenerator methodIL = myMethodBuilder.GetILGenerator();
      methodIL.Emit(OpCodes.Ldarg_0);
      methodIL.Emit(OpCodes.Ldfld, myFieldBuilder);
      methodIL.Emit(OpCodes.Ret);
      Console.WriteLine("Name               :"+myFieldBuilder.Name);
      Console.WriteLine("DeclaringType      :"+myFieldBuilder.DeclaringType);
      Console.WriteLine("Type               :"+myFieldBuilder.FieldType);
      Console.WriteLine("Token              :"+myFieldBuilder.GetToken().Token);
      return myTypeBuilder.CreateType();
   }

   [PermissionSetAttribute(SecurityAction.Demand, Name="FullTrust")]
   public static void Main()
   {
      try
      {
         Type myType = CreateType(Thread.GetDomain());
         // Create an instance of the "HelloWorld" class.
         Object helloWorld = Activator.CreateInstance(myType, new
 Object[] { "HelloWorld" });
         // Invoke the "MyMethod" method of the "MyClass"
 class.
         Object myObject  = myType.InvokeMember("MyMethod",
                        BindingFlags.InvokeMethod, null, helloWorld,
 null);
         Console.WriteLine("MyClass.MyMethod returned: \"" + myObject
 + "\"");
      }
      catch( Exception e)
      {
         Console.WriteLine("Exception Caught "+e.Message);
      }
  }
}
using namespace System;
using namespace System::Threading;
using namespace System::Reflection;
using namespace System::Reflection::Emit;
Type^ CreateType( AppDomain^ currentDomain )
{
   // Create an assembly.
   AssemblyName^ myAssemblyName = gcnew AssemblyName;
   myAssemblyName->Name = "DynamicAssembly";
   AssemblyBuilder^ myAssembly = currentDomain->DefineDynamicAssembly( myAssemblyName,
 AssemblyBuilderAccess::Run );

   // Create a dynamic module in Dynamic Assembly.
   ModuleBuilder^ myModuleBuilder = myAssembly->DefineDynamicModule( "MyModule"
 );

   // Define a public class named S"MyClass" in the assembly.
   TypeBuilder^ myTypeBuilder = myModuleBuilder->DefineType( "MyClass",
 TypeAttributes::Public );

   // Define a private String field named S"MyField" in the
 type.
   FieldBuilder^ myFieldBuilder = myTypeBuilder->DefineField( "MyField",
 String::typeid, static_cast<FieldAttributes>(FieldAttributes::Private | FieldAttributes::Static)
 );

   // Create the constructor.
   array<Type^>^constructorArgs = {String::typeid};
   ConstructorBuilder^ constructor = myTypeBuilder->DefineConstructor( MethodAttributes::Public,
 CallingConventions::Standard, constructorArgs );
   ILGenerator^ constructorIL = constructor->GetILGenerator();
   constructorIL->Emit( OpCodes::Ldarg_0 );
   ConstructorInfo^ superConstructor = Object::typeid->GetConstructor( gcnew array<Type^>(0)
 );
   constructorIL->Emit( OpCodes::Call, superConstructor );
   constructorIL->Emit( OpCodes::Ldarg_0 );
   constructorIL->Emit( OpCodes::Ldarg_1 );
   constructorIL->Emit( OpCodes::Stfld, myFieldBuilder );
   constructorIL->Emit( OpCodes::Ret );

   // Create the MyMethod method.
   MethodBuilder^ myMethodBuilder = myTypeBuilder->DefineMethod( "MyMethod",
 MethodAttributes::Public, String::typeid, nullptr );
   ILGenerator^ methodIL = myMethodBuilder->GetILGenerator();
   methodIL->Emit( OpCodes::Ldarg_0 );
   methodIL->Emit( OpCodes::Ldfld, myFieldBuilder );
   methodIL->Emit( OpCodes::Ret );
   Console::WriteLine( "Name               : {0}", myFieldBuilder->Name
 );
   Console::WriteLine( "DeclaringType      : {0}", myFieldBuilder->DeclaringType
 );
   Console::WriteLine( "Type               : {0}", myFieldBuilder->FieldType
 );
   Console::WriteLine( "Token              : {0}", myFieldBuilder->GetToken().Token
 );
   return myTypeBuilder->CreateType();
}

int main()
{
   try
   {
      Type^ myType = CreateType( Thread::GetDomain() );

      // Create an instance of the S"HelloWorld" class.
      array<Object^>^type = {"HelloWorld"};
      Object^ helloWorld = Activator::CreateInstance( myType, type );

      // Invoke the S"MyMethod" method of the S"MyClass"
 class.
      Object^ myObject = myType->InvokeMember( "MyMethod", BindingFlags::InvokeMethod,
 nullptr, helloWorld, nullptr );
      Console::WriteLine( "MyClass::MyMethod returned: \"{0}\"",
 myObject );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "Exception Caught {0}", e->Message );
   }
}
継承階層継承階層
System.Object
   System.Reflection.MemberInfo
     System.Reflection.FieldInfo
      System.Reflection.Emit.FieldBuilder
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
FieldBuilder メンバ
System.Reflection.Emit 名前空間

FieldBuilder プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Attributes オーバーライドされます。 このフィールド属性示します。このプロパティ読み取り専用です。
パブリック プロパティ DeclaringType オーバーライドされます。 このフィールド宣言する型の Type オブジェクトへの参照示します。このプロパティ読み取り専用です。
パブリック プロパティ FieldHandle オーバーライドされます。 このフィールド内部メタデータ ハンドル示します。このプロパティ読み取り専用です。
パブリック プロパティ FieldType オーバーライドされます。 このフィールドの型を表す Type オブジェクト示します。このプロパティ読み取り専用です。
パブリック プロパティ IsAssembly  このフィールドに、アセンブリ レベル参照可能範囲設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsFamily  このフィールドに、ファミリ レベル参照可能範囲設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsFamilyAndAssembly  このフィールドに、FamilyAndAssembly レベル参照可能範囲設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsFamilyOrAssembly  このフィールドに、FamilyOrAssembly レベル参照可能範囲設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsInitOnly  フィールドコンストラクタ本体だけでしか設定できないかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsLiteral  値がコンパイル時書き込まれ変更できないかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsNotSerialized  このフィールドに、NotSerialized 属性設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsPinvokeImpl  対応する PinvokeImpl 属性が FieldAttributes に設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsPrivate  フィールドプライベートかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsPublic  フィールドパブリックかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsSpecialName  対応する SpecialName 属性FieldAttributes 列挙子に設定されているかどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ IsStatic  フィールド静的かどうかを示す値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ MemberType  このメンバフィールドであることを示す MemberTypes 値を取得します。 ( FieldInfo から継承されます。)
パブリック プロパティ MetadataToken  メタデータ要素識別する値を取得します。 ( MemberInfo から継承されます。)
パブリック プロパティ Module オーバーライドされます。 このフィールドを含む型が定義されるモジュール取得します
パブリック プロパティ Name オーバーライドされます。 このフィールドの名前を示します。このプロパティ読み取り専用です。
パブリック プロパティ ReflectedType オーバーライドされます。 このオブジェクト取得元である Type オブジェクトへの参照示します。このプロパティ読み取り専用です。
参照参照

関連項目

FieldBuilder クラス
System.Reflection.Emit 名前空間

FieldBuilder メソッド


パブリック メソッドパブリック メソッド

  名前 説明
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetCustomAttributes オーバーロードされますオーバーライドされます。 このフィールドに対して定義されているカスタム属性返します
パブリック メソッド GetFieldFromHandle  オーバーロードされますハンドルが表すフィールドの FieldInfo を取得します。 ( FieldInfo から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetOptionalCustomModifiers  フィールドオプションカスタム修飾子識別する型の配列取得します。 ( FieldInfo から継承されます。)
パブリック メソッド GetRawConstantValue  コンパイラによってフィールド関連付けられているリテラル値を返します。 ( FieldInfo から継承されます。)
パブリック メソッド GetRequiredCustomModifiers  プロパティ必須のカスタム修飾子識別する型の配列取得します。 ( FieldInfo から継承されます。)
パブリック メソッド GetToken このフィールドを表すトークン返します
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド GetValue オーバーライドされます指定したオブジェクトサポートされているフィールドの値を取得します
パブリック メソッド GetValueDirect  指定したオブジェクトサポートされているフィールドの値を返します。 ( FieldInfo から継承されます。)
パブリック メソッド IsDefined オーバーライドされます指定した型の属性フィールド定義されているかどうか示します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド SetConstant このフィールド既定値設定します
パブリック メソッド SetCustomAttribute オーバーロードされますカスタム属性設定します
パブリック メソッド SetMarshal フィールドネイティブ マーシャリング記述します
パブリック メソッド SetOffset フィールド レイアウト指定します
パブリック メソッド SetValue オーバーロードされますフィールドの値を設定します
パブリック メソッド SetValueDirect  指定したオブジェクトサポートされているフィールドの値を設定します。 ( FieldInfo から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.GetIDsOfNames 名前のセット対応するディスパッチ識別子セット割り当てます
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.GetTypeInfo オブジェクト型情報取得します。この型情報は、インターフェイス型情報取得するために使用できます
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.GetTypeInfoCount オブジェクト提供する型情報インターフェイスの数を取得します (0 または 1)。
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.Invoke オブジェクトによって公開されているプロパティおよびメソッドアクセスできるようにします。
参照参照

関連項目

FieldBuilder クラス
System.Reflection.Emit 名前空間

FieldBuilder メンバ

フィールドを定義および表現します。このクラス継承できません。

FieldBuilder データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Attributes オーバーライドされます。 このフィールド属性示します。このプロパティ読み取り専用です。
パブリック プロパティ DeclaringType オーバーライドされます。 このフィールド宣言する型の Type オブジェクトへの参照示します。このプロパティ読み取り専用です。
パブリック プロパティ FieldHandle オーバーライドされます。 このフィールド内部メタデータ ハンドル示します。このプロパティ読み取り専用です。
パブリック プロパティ FieldType オーバーライドされます。 このフィールドの型を表す Type オブジェクト示します。このプロパティ読み取り専用です。
パブリック プロパティ IsAssembly  このフィールドに、アセンブリ レベル参照可能範囲設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsFamily  このフィールドに、ファミリ レベル参照可能範囲設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsFamilyAndAssembly  このフィールドに、FamilyAndAssembly レベル参照可能範囲設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsFamilyOrAssembly  このフィールドに、FamilyOrAssembly レベル参照可能範囲設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsInitOnly  フィールドコンストラクタ本体だけでしか設定できないかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsLiteral  値がコンパイル時書き込まれ変更できないかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsNotSerialized  このフィールドに、NotSerialized 属性設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsPinvokeImpl  対応する PinvokeImpl 属性が FieldAttributes に設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsPrivate  フィールドプライベートかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsPublic  フィールドパブリックかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsSpecialName  対応する SpecialName 属性FieldAttributes 列挙子に設定されているかどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ IsStatic  フィールド静的かどうかを示す値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ MemberType  このメンバフィールドであることを示す MemberTypes 値を取得します。(FieldInfo から継承されます。)
パブリック プロパティ MetadataToken  メタデータ要素識別する値を取得します。(MemberInfo から継承されます。)
パブリック プロパティ Module オーバーライドされます。 このフィールドを含む型が定義されるモジュール取得します
パブリック プロパティ Name オーバーライドされます。 このフィールドの名前を示します。このプロパティ読み取り専用です。
パブリック プロパティ ReflectedType オーバーライドされます。 このオブジェクト取得元である Type オブジェクトへの参照示します。このプロパティ読み取り専用です。
パブリック メソッドパブリック メソッド
  名前 説明
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetCustomAttributes オーバーロードされますオーバーライドされます。 このフィールドに対して定義されているカスタム属性返します
パブリック メソッド GetFieldFromHandle  オーバーロードされますハンドルが表すフィールドの FieldInfo を取得します。 (FieldInfo から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetOptionalCustomModifiers  フィールドオプションカスタム修飾子識別する型の配列取得します。 (FieldInfo から継承されます。)
パブリック メソッド GetRawConstantValue  コンパイラによってフィールド関連付けられているリテラル値を返します。 (FieldInfo から継承されます。)
パブリック メソッド GetRequiredCustomModifiers  プロパティ必須のカスタム修飾子識別する型の配列取得します。 (FieldInfo から継承されます。)
パブリック メソッド GetToken このフィールドを表すトークン返します
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド GetValue オーバーライドされます指定したオブジェクトサポートされているフィールドの値を取得します
パブリック メソッド GetValueDirect  指定したオブジェクトサポートされているフィールドの値を返します。 (FieldInfo から継承されます。)
パブリック メソッド IsDefined オーバーライドされます指定した型の属性フィールド定義されているかどうか示します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド SetConstant このフィールド既定値設定します
パブリック メソッド SetCustomAttribute オーバーロードされますカスタム属性設定します
パブリック メソッド SetMarshal フィールドネイティブ マーシャリング記述します
パブリック メソッド SetOffset フィールド レイアウト指定します
パブリック メソッド SetValue オーバーロードされますフィールドの値を設定します
パブリック メソッド SetValueDirect  指定したオブジェクトサポートされているフィールドの値を設定します。 (FieldInfo から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.GetIDsOfNames 名前のセット対応するディスパッチ識別子セット割り当てます
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.GetTypeInfo オブジェクト型情報取得します。この型情報は、インターフェイス型情報取得するために使用できます
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.GetTypeInfoCount オブジェクト提供する型情報インターフェイスの数を取得します (0 または 1)。
インターフェイスの明示的な実装 System.Runtime.InteropServices._FieldBuilder.Invoke オブジェクトによって公開されているプロパティおよびメソッドアクセスできるようにします。
参照参照

関連項目

FieldBuilder クラス
System.Reflection.Emit 名前空間

_FieldBuilder インターフェイス

メモ : このインターフェイスは、.NET Framework version 2.0新しく追加されたものです。

System.Reflection.Emit.FieldBuilder クラスアンマネージ コード公開します

 

名前空間: System.Runtime.InteropServices
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ComVisibleAttribute(True)> _
<GuidAttribute("CE1A3BF5-975E-30CC-97C9-1EF70F8F3993")>
 _
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
<CLSCompliantAttribute(False)> _
Public Interface _FieldBuilder
Dim instance As _FieldBuilder
[ComVisibleAttribute(true)] 
[GuidAttribute("CE1A3BF5-975E-30CC-97C9-1EF70F8F3993")] 
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)] 
[CLSCompliantAttribute(false)] 
public interface _FieldBuilder
[ComVisibleAttribute(true)] 
[GuidAttribute(L"CE1A3BF5-975E-30CC-97C9-1EF70F8F3993")] 
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)] 
[CLSCompliantAttribute(false)] 
public interface class _FieldBuilder
/** @attribute ComVisibleAttribute(true) */ 
/** @attribute GuidAttribute("CE1A3BF5-975E-30CC-97C9-1EF70F8F3993") */
 
/** @attribute InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown) */ 
/** @attribute CLSCompliantAttribute(false) */ 
public interface _FieldBuilder
ComVisibleAttribute(true) 
GuidAttribute("CE1A3BF5-975E-30CC-97C9-1EF70F8F3993") 
InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown) 
CLSCompliantAttribute(false) 
public interface _FieldBuilder
解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
_FieldBuilder メンバ
System.Runtime.InteropServices 名前空間

_FieldBuilder メソッド


_FieldBuilder メンバ




英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「FieldBuilder」の関連用語

FieldBuilderのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FieldBuilderのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS