CommandLineArgumentConvertToArgumentTypeInvariant Method

Converts any type to the argument's ElementType.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public Object? ConvertToArgumentTypeInvariant(
	Object? value
)

Parameters

value  Object
The value to convert.

Return Value

Object
The converted value.

Remarks

If the type of value is directly assignable to ArgumentType, no conversion is done. If the value is a String, the same rules apply as for the ConvertToArgumentType(CultureInfo, String) method, using InvariantCulture. Otherwise, the TypeConverter for the argument is used to convert between the source.

This method is used to convert the DefaultValue property to the correct type, and is also used by implementations of the ArgumentValidationAttribute class to convert values when needed.

Exceptions

NotSupportedException The argument's TypeConverter cannot convert between the type of value and the ArgumentType.
NotSupportedExceptionThe conversion is not supported.

See Also