'Declaration
<ContractAnnotationAttribute("null => true")> <PureAttribute()> Public Shared Function IsValidIdentifier( _ ByVal identifier As Object _ ) As Boolean
[ContractAnnotation("null => true")] [Pure()] public static bool IsValidIdentifier( object identifier )
[ContractAnnotation("null => true")] [Pure()] public: static bool IsValidIdentifier( Object^ identifier )
Parameters
- identifier
- The identifier object to be tested.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
true
if the identifier is valid; otherwise, returns false
.