C#/기본

C# Random 사용

퓨어레드 2012. 6. 27. 15:44
Random r = new Random ();

r.Next ();
r.Next (10);
r.Next (1, 20);