Hi guys,

I am generating two lists of collections. I am wondering if there is a way to quickly determine if both collections are the same? Is there an inbuilt function?

Otherwise I suppose I will have to create a few checks myself, if that is the case, then I'd probably do the following, in the following order.
1/ check both are the same size
2/ Sort both collections
3/ check both collections are the same, index value by index value.


Any opinions? Any suggestions?

Cheers,
Jimmy