I am trying to covert a line of code I have in ASP .Net VB:
VB Code:
  1. strRandomText &= Mid(strCharacters, Int(Len(strCharacters) * Rnd()) + 1, 1)

How would I do this in C#?