ParsableConverterT Class

An argument converter for types that implement the IParsableTSelf interface.

Definition

Namespace: Ookii.CommandLine.Conversion
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public class ParsableConverter<T> : ArgumentConverter
where T : Object, IParsable<T>
Inheritance
Object    ArgumentConverter    ParsableConverterT

Type Parameters

T
The type to convert to.

Remarks

Conversion is performed using the IParsableTSelfParse(String, IFormatProvider) method.

Only use this converter for types that implement the IParsableTSelf interface, but not the ISpanParsableTSelf interface. For types that implement the ISpanParsableTSelf interface, use the SpanParsableConverterT class.

Constructors

ParsableConverterTInitializes a new instance of the ParsableConverterT class

Methods

Convert(ReadOnlySpanChar, CultureInfo, CommandLineArgument) Converts a string span to the type of the argument.
(Inherited from ArgumentConverter)
Convert(String, CultureInfo, CommandLineArgument) Converts a string to the type of the argument.
(Overrides ArgumentConverterConvert(String, CultureInfo, CommandLineArgument))
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.

See Also