C Sharp (C#) - Collections
What will be the output of the following C# code?
var fruits = new HashSet<string>();
fruits.Add("orange");
fruits.Add("grape");
fruits.Add("orange");
Console.WriteLine(fruits.Count);