using System.Collections.Generic;
public static void Main()
var HashA = new HashSet<List<string>> { new List<string> {"ItemA", "ItemB"}};
var HashB = new HashSet<List<string>> { new List<string> {"ItemA", "ItemB"}};
var ResultA = HashA.SetEquals(HashB);