ParsableConverterTConvert Method
            Converts a string memory region to the type of the argument.
            
Namespace: Ookii.CommandLine.ConversionAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public override Object? Convert(
	ReadOnlyMemory<char> value,
	CultureInfo culture,
	CommandLineArgument argument
)
Public Overrides Function Convert ( 
	value As ReadOnlyMemory(Of Char),
	culture As CultureInfo,
	argument As CommandLineArgument
) As Object
Dim instance As ParsableConverter
Dim value As ReadOnlyMemory(Of Char)
Dim culture As CultureInfo
Dim argument As CommandLineArgument
Dim returnValue As Object
returnValue = instance.Convert(value, 
	culture, argument)
public:
virtual Object^ Convert(
	ReadOnlyMemory<wchar_t> value, 
	CultureInfo^ culture, 
	CommandLineArgument^ argument
) override
- value  ReadOnlyMemoryChar
 - 
            The ReadOnlyMemoryT containing the string to convert.
            
 - culture  CultureInfo
 - The culture to use for the conversion.
 - argument  CommandLineArgument
 - 
            The CommandLineArgument that will use the converted value.
            
 
ObjectAn object representing the converted value.