UnquoteIdentifier method

Returns the correct unquoted form of a quoted identifier, including properly un-escaping any embedded quotes in the identifier.

Syntax
Visual Basic

Public Overrides Function UnquoteIdentifier( _
   ByVal quotedIdentifier As String _
) As String
C#

public override string  UnquoteIdentifier(
   string  quotedIdentifier
);
Parameters
  • quotedIdentifier   The string representing the quoted identifier that will have its embedded quotes removed.

Return value

Returns a string representing the unquoted form of a quoted identifier with embedded quotes properly un-escaped.

See also