Parse() will crash! Use TryParse()
- If the
arg equals something like /t:=Max or any other non-integer, then int.Parse(arg) will throw an exception.
- You are invoking
int.Parse() twice unnecessarily (even more!).
So, you should change your if-else to:
...
int argInt;
if(int.TryParse(arg, out argInt) && ...)
{
array[i] = new ComputeParam(argInt);
}
else
...
Your answer:
Option 1: out parameter
Change the method definition to below, and set time as you already did:
public object[] Dispatch(string arg, out int time)
Option 2: Encapsulate return value in an object
Define a class like below, and return an instance of it:
class DispatchReturn
{
object[] array;
int time;
}
Then return it:
public DispatchReturn Dispatch(string arg)
Option 3: Changing parser class. Don't!
You can put both the array and time inside the parser as fields, but avoid it! It violates separation of concerns.
Wrap-up
public ComputeParam[] Dispatch(string arg, out time)
{
if (arg == null)
throw new ArgumentNullException("arg");
ComputeParam[] array = new ComputeParam[1];
int argInt;
if (int.TryParse(arg, out argInt) && 0 <= argInt && argInt <= 20)
{
array[0] = new ComputeParam(argInt);
time = 0; // You must always set an out param
}
else if (arg.StartsWith("/t")
{
time = new Options().Option(arg);
}
return array;
}
You should answer these questions:
- What does
i? Is this always equals to 0?
- Why your return type is an array of
objects, instead of ComputeParams?
- Why do you create the array for 10 elements and put only one?
The above code can be significantly change according to your answers.
int.Parse. – mmdemirbas Aug 6 '12 at 7:57