FixedAddressValueTypeAttribute Class
.NET Framework 3.0
Fixes the address of a static value type field throughout its lifetime. This class cannot be inherited.
Namespace: System.Runtime.CompilerServices
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <AttributeUsageAttribute(AttributeTargets.Field)> _ Public NotInheritable Class FixedAddressValueTypeAttribute Inherits Attribute 'Usage Dim instance As FixedAddressValueTypeAttribute
/** @attribute SerializableAttribute() */ /** @attribute AttributeUsageAttribute(AttributeTargets.Field) */ public final class FixedAddressValueTypeAttribute extends Attribute
SerializableAttribute AttributeUsageAttribute(AttributeTargets.Field) public final class FixedAddressValueTypeAttribute extends Attribute
Not applicable.
Use the FixedAddressValueTypeAttribute attribute to mark static value types as pinned upon creation.
This attribute is used by the Microsoft Visual C++ compiler.
Static value type fields are created as boxed objects. This means that their address can change as garbage collection is performed. When you apply this attribute to a static value type, its address remains constant during its lifetime.
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.Community Additions
ADD
Show: