This library works great for most cases, but when comparing a List the elements are required be in the same order.
Ex:
List<string>{"cat","dog"}
List<string>{"dog","cat"}
this says there is a difference. But this should return no difference. Is this a limitation in the library or if there a way to impose this check, how can it be done?
This library works great for most cases, but when comparing a List the elements are required be in the same order.
Ex:
this says there is a difference. But this should return no difference. Is this a limitation in the library or if there a way to impose this check, how can it be done?