Unquotes an array of Quoted Names.
Namespace: NHibernate.DialectAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
| C# |
|---|
public virtual string[] UnQuote( string[] quoted ) |
| Visual Basic |
|---|
Public Overridable Function UnQuote ( _ quoted As String() _ ) As String() |
| Visual C++ |
|---|
public: virtual array<String^>^ UnQuote( array<String^>^ 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.