Hi,
Still learning C#...I am trying to pass 2 arrays to a report menu. I keep getting 'Identifier Expected' error. MSDN says its to replace the keyword with a user specified identifier. I'm not sure what its looking for. It's giving me the error at the reportMenu method. Here's part of my code:
case 5:
reportMenu(cArray, tArray);
break;
}// end of switch statments
}//end of main menu while Loop
}//end of main method
public static void reportMenu(cArray, tArray)
thanks
Still learning C#...I am trying to pass 2 arrays to a report menu. I keep getting 'Identifier Expected' error. MSDN says its to replace the keyword with a user specified identifier. I'm not sure what its looking for. It's giving me the error at the reportMenu method. Here's part of my code:
case 5:
reportMenu(cArray, tArray);
break;
}// end of switch statments
}//end of main menu while Loop
}//end of main method
public static void reportMenu(cArray, tArray)
thanks