cs0028.cs 196 B

123456789101112
  1. // cs0028: has the wrong signature to be an entry point
  2. // Line: 8
  3. class T {
  4. public static int Main ()
  5. {
  6. }
  7. public static int Main (int foo)
  8. {
  9. }
  10. }