fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var set = new HashSet<int>();
  9.  
  10. Console.WriteLine(set.Add(42) ? "Added" : "Not added");
  11. Console.WriteLine(set.Count);
  12.  
  13. // повторим
  14. Console.WriteLine(set.Add(42) ? "Added" : "Not added");
  15. Console.WriteLine(set.Count);
  16. }
  17. }
Success #stdin #stdout 0.04s 24040KB
stdin
Standard input is empty
stdout
Added
1
Not added
1