public static sbyte GetSByte(this ICommandLine commandLine, string optionName, sbyte defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
 public static TimeSpan GetTimeSpan(this ICommandLine commandLine, string optionName, TimeSpan defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
 public static string GetString(this ICommandLine commandLine, string optionName, string defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
 public static decimal GetDecimal(this ICommandLine commandLine, string optionName, decimal defaultValue)
 {
     return(commandLine.GetValue <decimal>(optionName, defaultValue));
 }
 public static DateTime GetDateTime(this ICommandLine commandLine, string optionName, DateTime defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
 public static double GetDouble(this ICommandLine commandLine, string optionName, double defaultValue)
 {
     return(commandLine.GetValue <double>(optionName, defaultValue));
 }
 public static float GetSingle(this ICommandLine commandLine, string optionName, float defaultValue)
 {
     return(commandLine.GetValue <float>(optionName, defaultValue));
 }
 public static long GetInt64(this ICommandLine commandLine, string optionName, long defaultValue)
 {
     return(commandLine.GetValue <long>(optionName, defaultValue));
 }
 public static int GetInt32(this ICommandLine commandLine, string optionName, int defaultValue)
 {
     return(commandLine.GetValue <int>(optionName, defaultValue));
 }
 public static short GetInt16(this ICommandLine commandLine, string optionName, short defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }