Zitat von
Steve9825679:
+ System.Random.Create mit beliebigen Seeds gefüttert
Genau das wird das Problem sein: Der parameterlose Konstruktor von Random ermittelt den Seed durch die Systemzeit, anscheinend aber mit zu geringer Auflösung für deine Methode.
Zitat von
SDK:
However, if your application runs on a fast computer the system clock might not have time to change between invocations of this constructor; the seed value might be the same for different instances of Random. In that case, apply an algorithm to differentiate the seed value in each invocation.
So oder einfach ein kleines Sleep() einbauen
.
PS: Bei deinen vielen String-Konkatenationen wird dir der GC an die Decke springen. Benutze besser die StringBuilder-Klasse.