Returns the correct unquoted form of a quoted identifier, including properly un-escaping any embedded quotes in the identifier.
Visual Basic
Public Overrides Function UnquoteIdentifier( _
ByVal quotedIdentifier As String _
) As String
C#
public override string UnquoteIdentifier(
string quotedIdentifier
);
quotedIdentifier The string representing the quoted identifier that will have its embedded quotes removed.
Returns a string representing the unquoted form of a quoted identifier with embedded quotes properly un-escaped.