Creating a dictionary in .NET Part 1 – Create a string dictionary
1 min read

Creating a dictionary in .NET Part 1 – Create a string dictionary

Let’s create a dictionary in .NET from here.

First create a new dictionary containing strings.

Dictionary<string, string> openWith =
    new Dictionary<string, string>();

Great! Now in the next post we’ll add some elements.

Leave a Reply