■ RuntimeReflectionExtensions 클래스의 GetRuntimeProperties 확장 메소드를 사용해 특정 타입의 속성 열거 가능형을 구하는 방법을 보여준다.
▶ 예제 코드 1 (C#)
1 2 3 4 5 6 7 8 |
using System.Collections.Generic; using System.Reflection; using Microsoft.UI; IEnumerable<PropertyInfo> propertyInfoEnumerable = typeof(Colors).GetRuntimeProperties(); |
▶ 예제 코드 2 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System.Collections.Generic; using System.Linq; using System.Reflection; using Microsoft.UI; IEnumerable<PropertyInfo> propertyInfoEnumerable = typeof(Colors).GetRuntimeProperties() .Where(propertyInfo => propertyInfo.GetMethod.IsStatic && propertyInfo.PropertyType == typeof(Color)); |