How to randomize sort order in dictionary using Linq
I just came across need where I wanted to shuffle my dictionary with random order. Here is code snippet which uses Linq to randomize order of key/value pair you added. using System; using System.Linq; namespace MyApp { public class MyClass …
How to randomize sort order in dictionary using Linq Read more »