프로그래밍 TIP/.NET

[C#] 객체명 문자열을 실제 객체로 바꾸는 방법(Late Binding)

여름나라겨울이야기 2009. 2. 16. 10:11
728x90
Type t = Type.GetType("MyNamespace.asdf");

asdf a = (asdf)Activator.CreateInstance(t);
반응형