Answers for "turn dictionary values into an array C#"

C#
0

c# dictionary values to array

// dict is Dictionary<string, Foo>

Foo[] foos = new Foo[dict.Count];
dict.Values.CopyTo(foos, 0);

// or in C# 3.0:
var foos = dict.Values.ToArray();
Posted by: Guest on October-23-2020

Code answers related to "turn dictionary values into an array C#"

C# Answers by Framework

Browse Popular Code Answers by Language