how to add elements to dictionary in c# code example
Example 1: how to add object in dictionary in c#
public TValue this[TKey key]
{
get
{
int index = this.FindEntry(key);
if (index >= 0)
{
return this.entries[index].value;
}
ThrowHelper.ThrowKeyNotFoundException();
return default(TValue);
}
set
{
this.Insert(key, value, false);
}
}
Example 2: c sharp add item to dictionary
// To add an item to a dictionary use 'Add()'
dict.Add(1,"One");