I'm new to C#, but I never understood what the () at the end of a dictionary means!
Let's say I have a class, and I declare a field like this:
public Dictionary<InventoryType, Inventory> Inventory { get; private set; }
And then, on the constructor, I have:
Inventory = new Dictionary<InventoryType, Inventory>(6);
What does the 6 at the end means? Thank you!