예제 #1
0
 private int GetAmountUserArgsMaxPossible()
 {
     if (UserParameters.Any(u => u.IsRemainingText))
     {
         return(int.MaxValue);
     }
     return(UserParameters.Sum(u => u.UserInputLength));
 }