cs1552.cs 203 B

1234567891011
  1. //
  2. // cs1552.cs: Array type specified, [] must appear before parameter name
  3. // Line: 8
  4. class T {
  5. // To fix: change (string args[]) to (string [] args)
  6. public static int Main (string args[])
  7. {
  8. }
  9. }