CliBindingContextGetArgumentParserTArgument(FuncString, TArgument) Method
            Gets an argument parser method for an argument type.
            
            This is mainly used for adding support for binding custom types which have a public constructor
            or a static Parse method with a string parameter (other parameters, if any, should be optional).
            
Namespace: DotMake.CommandLineAssembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 2.8.2
public Func<ArgumentResult, TArgument> GetArgumentParser<TArgument>(
	Func<string, TArgument> convertFromString = null
)
- convertFromString  FuncString, TArgument  (Optional)
 - A delegate which creates an instance of custom type from a string.
 
- TArgument
 - The argument type.
 
FuncArgumentResult, 
TArgumentA delegate which can be passed to an option or argument.