Random Uygulaması-1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RandomUygulamasi { class Program { static void Main(string[] args) { Random rnd=new Random(); int deger = rnd.Next() % 35;//0 ile 34 arasında 34 ve 0 dahil deger = (rnd.Next() % 33) + 2;//2 ile 34 arasında 34 ve 2 dahil deger = rnd.Next(2, 35); } } }