C# ile rastgele 10 karakterli bir metin oluşturan örneğe ait kodlar:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
class Program { static void Main(string[] args) { Random rastgele = new Random(); string harfler = "qwertyuıopğüasdfghjklşizxcvbnmöçQWERTYUIOPĞÜASDFGHJKLŞİZXCVBNMÖÇ"; string uret = ""; for (int i = 0; i < 10; i++) { uret += harfler[rastgele.Next(harfler.Length)]; } Console.WriteLine(uret); Console.ReadKey(); } } |
Yorum Yap