私はList<List<Vertex>>、Vertexプロパティを持っていますid。このリストに追加する必要がありList<Vertex>>ますが、リストを重複させる必要はありません。
public void AddComponent(List<Vertex> list)
{
List<List<Vertex>> components = new List<List<Vertex>>;
//I need something like
if (!components.Contain(list)) components.Add(list);
}