CommandLineArgumentMultiValueSeparator Property  | 
 
            Gets the separator for the values if this argument is a multi-value argument
            
 
    Namespace: 
   Ookii.CommandLine
    Assembly:
   Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic string MultiValueSeparator { get; }Public ReadOnly Property MultiValueSeparator As String
	Get
Dim instance As CommandLineArgument
Dim value As String
value = instance.MultiValueSeparator
public:
property String^ MultiValueSeparator {
	String^ get ();
}Property Value
Type: 
String
            The separator for multi-value arguments, or 
 if no separator is used.
            
Remarks
              This property is only meaningful if the IsMultiValue property is .
            
See Also