Unquotes an array of Quoted Names.

Namespace:  NHibernate.Dialect
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function UnQuote ( _
	quoted As String() _
) As String()
C#
public virtual string[] UnQuote(
	string[] quoted
)
Visual C++
public:
virtual array<String^>^ UnQuote(
	array<String^>^ quoted
)
JavaScript
function unQuote(quoted);

Parameters

quoted
Type: array< System..::.String >[]()[]
strings to Unquote

Return Value

an array of unquoted strings.

Remarks

This use UnQuote(string) for each string in the quoted array so it should not need to be overridden - only UnQuote(string) needs to be overridden unless this implementation is not sufficient.

See Also