A
AA2e72E
I am getting this error with a switch statement: what doe it mean?
int[] res = new int[] {Convert.ToInt32(arg1 is string[]),
Convert.ToInt32(arg2 is string[])};
switch (res)
{
case new int[]{0,0}:
{
............
}
case new int[]{0,1}:
{
....
}
}
How can I resolve this?
Thanks for your help.
int[] res = new int[] {Convert.ToInt32(arg1 is string[]),
Convert.ToInt32(arg2 is string[])};
switch (res)
{
case new int[]{0,0}:
{
............
}
case new int[]{0,1}:
{
....
}
}
How can I resolve this?
Thanks for your help.