Пример #1
0
        public override void ShowTypeView(Type type, object instance = null)
        {
            if (type is null)
            {
                return;
            }
            m_InstancePropertys = new List <PropertyInfo>(PropertyHelpers.GetInstancePropertys(type));
            m_InstancePropertys.Sort(Comparison);

            m_StaticPropertys = new List <PropertyInfo>(PropertyHelpers.GetStaticPropertys(type));
            m_StaticPropertys.Sort(Comparison);

            base.ShowTypeView(type, instance);
        }