예제 #1
0
 public static sbyte GetSByte(this ICommandLine commandLine, string optionName, sbyte defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
예제 #2
0
 public static TimeSpan GetTimeSpan(this ICommandLine commandLine, string optionName, TimeSpan defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
예제 #3
0
 public static string GetString(this ICommandLine commandLine, string optionName, string defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
예제 #4
0
 public static decimal GetDecimal(this ICommandLine commandLine, string optionName, decimal defaultValue)
 {
     return(commandLine.GetValue <decimal>(optionName, defaultValue));
 }
예제 #5
0
 public static DateTime GetDateTime(this ICommandLine commandLine, string optionName, DateTime defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }
예제 #6
0
 public static double GetDouble(this ICommandLine commandLine, string optionName, double defaultValue)
 {
     return(commandLine.GetValue <double>(optionName, defaultValue));
 }
예제 #7
0
 public static float GetSingle(this ICommandLine commandLine, string optionName, float defaultValue)
 {
     return(commandLine.GetValue <float>(optionName, defaultValue));
 }
예제 #8
0
 public static long GetInt64(this ICommandLine commandLine, string optionName, long defaultValue)
 {
     return(commandLine.GetValue <long>(optionName, defaultValue));
 }
예제 #9
0
 public static int GetInt32(this ICommandLine commandLine, string optionName, int defaultValue)
 {
     return(commandLine.GetValue <int>(optionName, defaultValue));
 }
예제 #10
0
 public static short GetInt16(this ICommandLine commandLine, string optionName, short defaultValue)
 {
     return(commandLine.GetValue(optionName, defaultValue));
 }