FieldInfo.IsStatic Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets a value that indicates whether the field is static (Shared in Visual Basic).
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| MethodAccessException | This member is invoked late-bound through mechanisms such as Type.InvokeMember. |
When a field is static, one copy of the field is shared by all instances of the type.
The IsStatic property is set when the FieldAttributes.Static attribute is set.
To get the IsStatic property, first get the class Type. From the Type, get the FieldInfo. From the FieldInfo, get the IsStatic property.