반응형
Assembly assembly = Assembly.LoadFrom("파일 경로(DLL)");
Type type = assembly.GetType("형식전체이름(네임스페이스//클래스)", true);
object instance = Activator.CreateInstance(type, true); //객체 생성
MethodInfo methodInfo = type.GetMethod("매쏘드 이름"); //메쏘드 실행
methodInfo.Invoke(instance, new object[] { 인자,인자 });
'Programing > C# ' 카테고리의 다른 글
point , inch, pixel ,mm 단위 관계 (0) | 2013.12.11 |
---|---|
Make Short Path(긴 파일명 짧게 줄이는 방법), 파일이름 길이 줄이기 (0) | 2012.12.18 |
c# unicodeString to unicodevalue (0) | 2012.12.06 |
c# 코드 관리자 권한으로 실행 (0) | 2012.11.06 |
네트워크 드라이브 목록 가져오기 (0) | 2012.09.24 |