cs1520.cs 173 B

123456789101112
  1. //
  2. // cs1520: Class, struct or interface method must have a return type
  3. // Line: 9
  4. class test {
  5. // To fix add a return type
  6. public static Main (string[] args)
  7. {
  8. }
  9. }