Type::GetField Method (String)
Searches for the public field with the specified name.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
- Type: System::String
The String containing the name of the data field to get.
Return Value
Type: System.Reflection::FieldInfoA FieldInfo object representing the public field with the specified name, if found; otherwise, nullptr.
| Exception | Condition |
|---|---|
| ArgumentNullException | name is nullptr. |
| NotSupportedException | This Type object is a TypeBuilder whose CreateType method has not yet been called. |
The search for name is case-sensitive. The search includes public static and public instance fields.
If the current Type represents a constructed generic type, this method returns the FieldInfo with the type parameters replaced by the appropriate type arguments.
If the current Type represents a type parameter in the definition of a generic type or generic method, this method searches the fields of the class constraint.
The following example gets the Type object for the specified class, obtains the FieldInfo object for the field, and displays the value of the field.
Note: |
|---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: