cs0120.cs 283 B

123456789101112131415
  1. // cs0120: Ie, a static method invoking a non-static method
  2. // `An object reference is required for the nonstatic field, method or property test.method()
  3. // Line: 11
  4. class test {
  5. void method ()
  6. {
  7. }
  8. public static int Main (string [] args){
  9. method ();
  10. return 1;
  11. }
  12. }