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

randomize() public method

public randomize ( ) : void
return void
        public void randomize()
        {
            Random rand = new Random(DateTime.Now.Millisecond);
            text.SelectedIndex = rand.Next(0, text.Items.Count);
        }