동적으로 메서드 실행
다른 클래스의 메서드를 동적으로 실행하는 예제.우선 네임스페이스 어셈블리를 로드하고, 실행하려는 메서드를 가진 클래스의 인스턴스를 생성한뒤, InvokeMember 함수 를 사용한다. 파라미터도 넘길수 있고, 리턴값도 받을 수 있다. [Class1.cs] using System; public class Class1 { public static String method1() { return "This is static method in class1"; } public String method2() { return "This is Instance method in class1"; } public String method3( String s ) { return "Hello " + s; } } [DynaInvo..