Check if property exists.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static bool PropertyExists(
	this Object o,
	string propertyName
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function PropertyExists ( 
	o As Object,
	propertyName As String
) As Boolean
Visual C++
public:
[ExtensionAttribute]
static bool PropertyExists(
	Object^ o, 
	String^ propertyName
)
F#
static member PropertyExists : 
        o : Object * 
        propertyName : string -> bool 

Parameters

o
Type: System..::..Object
Object
propertyName
Type: System..::..String
Property or field name

Return Value

Type: Boolean
True if exists, False if not

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also