예제 #1
0
        public static GraphCompareResults XamlCompare(Object root1, Object root2)
        {
            ObjectGraph graph1 = ObjectGraphWalker.Create(root1);
            ObjectGraph graph2 = ObjectGraphWalker.Create(root2);

            return(ObjectGraphComparer.Compare(graph1, graph2, null));
        }
예제 #2
0
        // TODO: Ignore story //
        public static GraphCompareResults Compare(ObjectGraph root1, ObjectGraph root2)
        {
            // search and set the ignores on root1 //

            return(ObjectGraphComparer.Compare(root1, root2, null));
        }