Пример #1
0
        static void print_05()
        {
            Attribute_Concept Attribute_ex = new Attribute_Concept();

            Attribute_ex.OldMethod();
            Attribute_ex.NewMethod();
        } //애트리뷰트 기본
Пример #2
0
 public void SomeMethod()
 {
     Attribute_Concept.WriteLine("즐거운 프로그래밍!!");
 }
Пример #3
0
        } //애트리뷰트 기본

        static void print_06()
        {
            Attribute_Concept ac = new Attribute_Concept();

            ac.SomeMethod();
        }