public static object GetPropertyValue(object container, string propName)
        {
            PropertyDescriptor descriptor = TypeDescriptor.GetProperties(container).Find(propName, true);
            return descriptor.GetValue(container);
        }
我一直不明白PropertyDescriptor descriptor = TypeDescriptor.GetProperties(container).Find(propName, true);这句话的含义,哪位朋友详细解释下,谢谢了