using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Dictionary<string, string> myDtStrStr = new Dictionary<string, string>();
myDtStrStr.Add(null,"Suresh"); //Key value cannot be null
}