TypeBuilder.DefineField Method (String, Type, Type[], Type[], FieldAttributes)
.NET Framework 3.0
Adds a new field to the type, with the given name, attributes, field type, and custom modifiers.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public FieldBuilder DefineField ( string fieldName, Type type, Type[] requiredCustomModifiers, Type[] optionalCustomModifiers, FieldAttributes attributes )
public FieldBuilder DefineField ( String fieldName, Type type, Type[] requiredCustomModifiers, Type[] optionalCustomModifiers, FieldAttributes attributes )
public function DefineField ( fieldName : String, type : Type, requiredCustomModifiers : Type[], optionalCustomModifiers : Type[], attributes : FieldAttributes ) : FieldBuilder
Not applicable.
Parameters
- fieldName
The name of the field. fieldName cannot contain embedded nulls.
- type
The type of the field
- requiredCustomModifiers
An array of types representing the required custom modifiers for the field, such as IsConstModifier.
- optionalCustomModifiers
An array of types representing the optional custom modifiers for the field, such as IsConstModifier.
- attributes
The attributes of the field.
Return Value
The defined field.| Exception type | Condition |
|---|---|
| The length of fieldName is zero. -or- type is System.Void. -or- A total size was specified for the parent class of this field. | |
| fieldName is a null reference (Nothing in Visual Basic). | |
| The type was previously created using CreateType. |
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.