■ IntrospectionExtensions 클래스의 GetTypeInfo 확장 메소드를 사용해 특정 객체의 어셈블리를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
using System.Reflection; #region 어셈블리 구하기 - GetAssembly(source) /// <summary> /// 어셈블리 구하기 /// </summary> /// <param name="source">소스 객체</param> /// <returns>어셈블리</returns> public Assembly GetAssembly(object source) { Assembly assembly = source.GetType().GetTypeInfo().Assembly; return assembly; } #endregion |