CommandLineArgumentConvertToArgumentType Method

Converts the specified string to the ElementType.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public Object? ConvertToArgumentType(
	CultureInfo culture,
	string? argumentValue
)

Parameters

culture  CultureInfo
The culture to use for conversion.
argumentValue  String
The string to convert.

Return Value

Object
The converted value.

Remarks

Conversion is done by one of several methods. First, if a TypeConverterAttribute was present on the constructor parameter, property, or method that defined the property, the specified TypeConverter is used. Otherwise, if the default TypeConverter for the ElementType can convert from a string, it is used. Otherwise, a static Parse(String, IFormatProvider) or Parse(String) method on the type is used. Finally, a constructor that takes a single parameter of type String will be used.

Exceptions

ArgumentNullExceptionculture is
CommandLineArgumentExceptionargumentValue could not be converted to the type specified in the ArgumentType property.

See Also