Answers for "how to print dictionary in c#"

C#
0

how to print dictionary in c#

dict.Select(i => $"{i.Key}: {i.Value}").ToList().ForEach(Console.WriteLine);
Posted by: Guest on March-26-2022

C# Answers by Framework

Browse Popular Code Answers by Language