How can I generate a random 8 character alphanumeric string in C#?
There is one of the awasome nuget packages that make this so simple.
var myObject = new Faker() .RuleFor(p => p.MyAlphaNumericProperty, f => f.Random.AlphaNumeric(/*lenght*/ 7)) .Generate();
One of the good example is here.