Remark :
CS0501
bstract, extern 또는 partial로 표시되어 있지 않으므로 본문을 선언해야 합니다.
비추상 메서드에는 구현이 있어야 합니다.
1 2 3 4 5 6 7 8 9 |
// CS0501.cs // compile with: /target:library public class clx { public void f(); // CS0501 declared but not defined public void g() {} // OK } |