Operator listy <T> == W specyfikacji języka C # wersja 4

W C # Language Specification Version 4, 1.6.7.5 Operatory to informacje oList<T>&nbsp;operatorzy:==&nbsp;i!=. Ale nie mogę znaleźć takich operatorów zdefiniowanych wList<T>? Czy czegoś mi brakuje?

Przykładowy kod z 1.6.7.5 Operatorzy:

List<int> a = new List<int>();
a.Add(1);
a.Add(2);
List<int> b = new List<int>();
b.Add(1);
b.Add(2);
Console.WriteLine(a == b); // Outputs "True" => here I get False as well
b.Add(3);
Console.WriteLine(a == b); // Outputs "False"