Retrieves whether the property is the Special Name.
[Visual Basic] Public ReadOnly Property IsSpecialName As Boolean [C#] public bool IsSpecialName {get;} [C++] public: __property bool get_IsSpecialName(); [JScript] public function get IsSpecialName() : Boolean;
Read-only.
true if this property is the Special name; otherwise, false.
The SpecialName bit is set to flag members that are treated in a special way by some compilers (such as Property accessors and operator overloading methods).
To get the IsSpecialName property, first get the class Type. From the Type, get the PropertyInfo. From the PropertyInfo, get the IsSpecialName value.
PropertyInfo Class | PropertyInfo Members | System.Reflection Namespace