public abstract class ArgumentConverter
Public MustInherit Class ArgumentConverter
Dim instance As ArgumentConverter
public ref class ArgumentConverter abstract
To create a custom argument converter, you must implement at least the Convert(String, CultureInfo, CommandLineArgument) method. If it's possible to convert to the target type from a ReadOnlySpanT structure, it's strongly recommended to also implement the Convert(ReadOnlySpanChar, CultureInfo, CommandLineArgument) method.
ArgumentConverter | Initializes a new instance of the ArgumentConverter class |
Convert(ReadOnlySpanChar, CultureInfo, CommandLineArgument) | Converts a string span to the type of the argument. |
Convert(String, CultureInfo, CommandLineArgument) | Converts a string to the type of the argument. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
ToString | Returns a string that represents the current object. (Inherited from Object) |