Well, one way is Random.Next(100) <= 20 ? true : false, using the integer value of NextInt to force your own probability. I can't speak to the true 'randomness' of this method though.
More detailed example:
Random gen = new Random();
int prob = gen.Next(100);
return prob <= 20;