Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Main(string[] args)
- {
- SortedDictionary<string, int> pb = new SortedDictionary<string, int>();
- pb.Add("Pesho", 123);
- pb.Add("Zoro", 345);
- pb.Add("Anka", 343);
- foreach(var p in pb)
- {
- Console.WriteLine($"{p.Key}: {p.Value}");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement