{"id":7199,"date":"2023-01-13T11:11:26","date_gmt":"2023-01-13T10:11:26","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=7199"},"modified":"2023-01-13T11:11:27","modified_gmt":"2023-01-13T10:11:27","slug":"c-shuffle","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/c-shuffle\/","title":{"rendered":"C# Shuffle"},"content":{"rendered":"\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"csharp\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">public static IList&lt;T> Shuffle&lt;T>(IList&lt;T> list)\n{\n    var provider = new RNGCryptoServiceProvider();\n    int n = list.Count;\n    while (n > 1)\n    {\n        byte[] box = new byte[1];\n        do provider.GetBytes(box);\n        while (!(box[0] &lt; n * (Byte.MaxValue \/ n)));\n        int k = (box[0] % n);\n        n--;\n        T value = list[k];\n        list[k] = list[n];\n        list[n] = value;\n    }\n    return list;\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-7199","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/7199","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=7199"}],"version-history":[{"count":1,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/7199\/revisions"}],"predecessor-version":[{"id":7200,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/7199\/revisions\/7200"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=7199"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=7199"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=7199"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}