Creating a constant Dictionary in C#


Code:
Dictionary<string, int> ids = new Dictionary<string, int> { 
      {"abc",1}, {"def",2}, {"ghi",3} 
    };

How to write the same in VB?