C# Dictionaries

Leave a comment

Dictionaries are used in C# to define key value pairs. They are part of System.Collections.Generic.

The format is:

Dictionary<key,value>

 

To define a dictionary, use the format:

Dictionary<datatype, datatype> d = new Dictionary<datatype, datatype>();

For example:

Dictionary<int, int> d = new Dictionary<int, int>();

or

Dictionary<string, int> d = new Dictionary<string, int>();

To add to the data type, you can do either:

Dictionary<string, int> d1 = new Dictionary<string, int>();
d1.Add("Bob", 12345);

or

d[3] = 30;

From there, you can use different methods on the dictionary such as ContainsKey, ContainsValue:

if (d.ContainsKey(2))
{
    Console.WriteLine(d[2]);
}

 

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

See more articles on: C#

Leave a Reply

Your email address will not be published. Required fields are marked *