■ 자손 타입 리스트를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
using System; using System.Collections.Generic; using System.Reflection; #region 자손 타입 리스트 구하기 - GetDescendentTypeList(parentType) /// <summary> /// 자손 타입 리스트 구하기 /// </summary> /// <param name="parentType">부모 타입</param> /// <returns>자손 타입 리스트</returns> public List<Type> GetDescendentTypeList(Type parentType) { TypeInfo parentTypeInfo = parentType.GetTypeInfo(); Assembly assembly = parentTypeInfo.Assembly; List<Type> typeList = new List<Type>(); foreach(Type type in assembly.ExportedTypes) { TypeInfo typeInfo = type.GetTypeInfo(); if(typeInfo.IsPublic && parentTypeInfo.IsAssignableFrom(typeInfo)) { typeList.Add(type); } } typeList.Sort((type1, type2) => { return string.Compare(type1.GetTypeInfo().Name, type2.GetTypeInfo().Name); }); return typeList; } #endregion |