MemberInfo::ReflectedType Property
Gets the class object that was used to obtain this instance of MemberInfo.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
The ReflectedType property retrieves the Type object that was used to obtain this instance of MemberInfo. This may differ from DeclaringType if this MemberInfo object represents a member inherited from a base class.
If the MemberInfo object is a global member (that is, if it was obtained from the Module::GetMethods method, which returns global methods on a module), the returned DeclaringType will be nullptr.
The following example shows how the ReflectedType changes when the member Object::ToString is viewed from a MemberInfo obtained from type Object and from a MemberInfo obtained from the MemberInfo class itself, which inherits Object but does not override Object::ToString.
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: