Decided to give this a go

The code:
PHP Code: 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

namespace 
KWWH_RandomNumberGenerator
{
    class 
Program
    
{
        static 
Stopwatch sw = new Stopwatch();
        static 
Random rnd = new Random();


        static 
void Main(string[] args)
        {
            
sw.Start();
            for (
int i 0<= 10000000i++)
            {
                
getRand();
            }
            
Console.WriteLine(sw.Elapsed.ToString() + " - Whoo");
            
Console.ReadLine();
        }

        private static 
void getRand()
        {
            
int lol = ((rnd.Next() * 1103515245) + 12345) & 0x7fffffff;
        }
    }

The result: