RuntimeReflectionExtensions.GetRuntimeField Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an object that represents a specified field.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetRuntimeField ( _ type As Type, _ name As String _ ) As FieldInfo
Parameters
- type
- Type: System.Type
The type that contains the field.
- name
- Type: System.String
The name of the field.
Return Value
Type: System.Reflection.FieldInfoAn object that represents the specified field, or Nothing if the field is not found.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter.
Show: