Returns whether the specified identifier is valid for this object file.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public virtual bool IsValidIdentifier(
	string identifier
)
Visual Basic
Public Overridable Function IsValidIdentifier ( _
	identifier As String _
) As Boolean
Visual C++
public:
virtual bool IsValidIdentifier(
	String^ identifier
)

Parameters

identifier
Type: System..::..String
The identifier to test.

Return Value

trueTruetruetrue (True in Visual Basic) when the identifier is valid for this object file; otherwise, falseFalsefalsefalse (False in Visual Basic).

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionidentifier == null

Contracts

This method is pure.
Requires
identifier != null

See Also