Say I create a diff for these 2 arrays
var a1 = @"
{
"items": [
"one",
"two"
}";
var a2 = @"
{
"items": [
"two",
"one"
}";
Is there some way of causing the diff to recognise them as the same array, since they only differ in the items' order?
I am using Simple mode for Array diffing
Say I create a diff for these 2 arrays
Is there some way of causing the diff to recognise them as the same array, since they only differ in the items' order?
I am using Simple mode for Array diffing