 | IGetValueGetValuesT Method |
Returns a string array for a key. If there is no value for the
key, defaultValue is returned.
Namespace: NetEti.GlobalsAssembly: NetEti.Global (in NetEti.Global.dll) Version: 1.0.0+ad672dc5430e1683eae7461ce3945c8e9dce1c49
SyntaxT[]? GetValues<T>(
string key,
T[]? defaultValues
)
Function GetValues(Of T) (
key As String,
defaultValues As T()
) As T()
generic<type name T>
array<T>^ GetValues(
String^ key,
array<T>^ defaultValues
)
abstract GetValues :
key : string *
defaultValues : 'T[] -> 'T[]
Parameters
- key String
- The access key (string)
- defaultValues T
- The default result (string[])
Type parameters
- T
- Type of concrete values.
Return value
TThe result string array
See also