BlottoBeats.Client.TextBoxSetting.randomize C# (CSharp) Method

randomize() public method

public randomize ( ) : void
return void
        public void randomize()
        {
            Random rand = new Random(DateTime.Now.Millisecond);
            text.Text = "" + rand.Next(minRand, maxRand);
        }