ArgumentConverterConvert(String, CultureInfo, CommandLineArgument) Method

Converts a string to the type of the argument.

Definition

Namespace: Ookii.CommandLine.Conversion
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public abstract Object? Convert(
	string value,
	CultureInfo culture,
	CommandLineArgument argument
)

Parameters

value  String
The string to convert.
culture  CultureInfo
The culture to use for the conversion.
argument  CommandLineArgument
The CommandLineArgument that will use the converted value.

Return Value

Object
An object representing the converted value.

Exceptions

ArgumentNullExceptionvalue or culture or argument is .
FormatException The value was not in a correct format for the target type.
OverflowException The value was out of range for the target type.
CommandLineArgumentException The value was not in a correct format for the target type. Unlike FormatException and OverflowException, a CommandLineArgumentException thrown by this method will be passed down to the user unmodified.

See Also