コード例 #1
0
ファイル: Utils.cs プロジェクト: akrisiun/AiLib
        public static object GetPropertyValue(System.ComponentModel.PropertyDescriptorCollection properties, object obj, string property)
        {
            var value = properties.GetPropertyValue(property);

            return(value);
        }