item 13, static 클래스 멤버는 static 생성자를 사용하여 초기화 하라.
포스트를 만든 목적 Effective C# 을 읽고 공부하려고 만들었다. 내용 static 멤버 변수는 static 생성자를 사용 해서 초기화 하는게 좋다는 내용이다. 코드를 올릴테니, 컴파일 해보고, 어떻게 작동되나 눈으로 봐두는게 좋겠다. using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace console { class ConsoleClass { public static void Main() { HasStaticMember s1 = new HasStaticMember(); HasStaticMember s2 = new HasStaticMem..
책 정리/Effective C#
2010. 7. 1. 03:45
최근댓글