 | CommandLineGetStringValues method |
Returns a string array for a key. If there is no value for the
key, defaultValue is returned.
Returns only a single value packed as an array, may have to be
be extended.
Namespace: NetEti.ApplicationEnvironmentAssembly: NetEti.CommandLineAccess (in NetEti.CommandLineAccess.dll) Version: 1.0.0+3107384b301fc859aaac3a434ff023e72488deba
Syntaxpublic string?[]? GetStringValues(
string key,
string?[]? defaultValues
)
Public Function GetStringValues (
key As String,
defaultValues As String()
) As String()
public:
virtual array<String^>^ GetStringValues(
String^ key,
array<String^>^ defaultValues
) sealed
abstract GetStringValues :
key : string *
defaultValues : string[] -> string[]
override GetStringValues :
key : string *
defaultValues : string[] -> string[]
Parameters
- key String
- The access key (string)
- defaultValues String
- The default result (string[])
Return value
StringThe result string array
Implemented
IGetStringValueGetStringValues(String, String)
See also