Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
private static readonly string karakterler = "qwertyuiopasdfghjklzxcvbnm0123456789";
private static Random rnd = new Random();
public string doldur()
{
string sonuc = "";
for (int i = 0; i < ?istediğin uzunluk?; i++) sonuc += karakterler[rnd.Next(karakterler.Length)];
return sonuc+"@ask.fm";
}