C Sharp (C#) - Collections
Find the mistake in this code:
var set = new HashSet<string>();
set.Add("cat");
set.Add("dog");
set.Remove("bird");
Console.WriteLine(set.Count);