static void print_05() { Attribute_Concept Attribute_ex = new Attribute_Concept(); Attribute_ex.OldMethod(); Attribute_ex.NewMethod(); } //애트리뷰트 기본
public void SomeMethod() { Attribute_Concept.WriteLine("즐거운 프로그래밍!!"); }
} //애트리뷰트 기본 static void print_06() { Attribute_Concept ac = new Attribute_Concept(); ac.SomeMethod(); }