0

I want to know what for is StructuralComparisons Class present in System.Collections used and also how is it used?I have no idea how should I use it!! Smallest help would be appreciated.

Thanks

Batrickparry
  • 1,579
  • 2
  • 14
  • 14

1 Answers1

-1

StructuralComparisons is used to compare the structur of two values.

It is used in F# where StructuralComparisons is automaticly implented for every type, because of that two trees can be compared by just comparing the roots.

MaxMuen
  • 9
  • 1