Example #1
0
        Initialise()
        {
            ArrayList hierarchy = m_compareObjs.CommonHierarchy;

            foreach (Object typeObj in hierarchy)
            {
                Type      type       = typeObj as Type;
                Hashtable propsTable = m_compareObjs.GetPropsAtLevel(type);
                /// display it
                DisplayDiff(type.Name, propsTable);
            }
        }
Example #2
0
        PopulateListView()
        {
            m_listView.Items.Clear();

            ArrayList hierarchy = m_compareObjs.CommonHierarchy;

            foreach (Object typeObj in hierarchy)
            {
                Type      type       = typeObj as Type;
                Hashtable propsTable = m_compareObjs.GetPropsAtLevel(type);
                /// display it
                DisplayDiff(type.Name, propsTable);
            }
        }