ModuleBuilder.DefineUninitializedData Method
Defines an uninitialized data field in the .sdata section of the portable executable (PE) file.
Assembly: mscorlib (in mscorlib.dll)
public FieldBuilder DefineUninitializedData( string name, int size, FieldAttributes attributes )
Parameters
- name
- Type: System.String
The name used to refer to the data. name cannot contain embedded nulls.
- size
- Type: System.Int32
The size of the data field.
- attributes
- Type: System.Reflection.FieldAttributes
The attributes for the field.
| Exception | Condition |
|---|---|
| ArgumentException | The length of name is zero. -or- size is less than or equal to zero, or greater than or equal to 0x003f0000. |
| ArgumentNullException | name is null. |
| InvalidOperationException | CreateGlobalFunctions has been previously called. |
Static is automatically included in attributes.
The data defined by this method is not created until the CreateGlobalFunctions method is called.
Note |
|---|
Starting with the .NET Framework 2.0 Service Pack 1, this member no longer requires ReflectionPermission with the ReflectionPermissionFlag.ReflectionEmit flag. (See Security Issues in Reflection Emit.) To use this functionality, your application should target the .NET Framework 3.5 or later. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note