Want to learn more about the C# programming language but aren't sure where to get started? In this video tutorial, you'll learn how to write a simple dictionary application using C# and the Microsoft Visual C# IDE, or integrated development environment. For more information, including step-by-steps instructions for writing this simple program, take a look.
Just updated your iPhone to iOS 18? You'll find a ton of hot new features for some of your most-used Apple apps. Dive in and see for yourself:
4 Comments
plz, how i can download this video or any video in this site
how to make a program?
a dictionary in turbo c++
i need it for our project
very thanks
You can create a dictionary program in few lines
Dictionary < string, int > dict = new Dictionary < string, int > ();
dict.Add("one", 1);
dict.Add("two", 2);
dict.Add("three", 3);
dict.Add("four", 4);
full source http://csharp.net-informations.com/collection/dictionary.htm c# dictionary
Lee
Share Your Thoughts