示例#1
0
        void ILotteryProcesses.LoadLotteryList()
        {
            CustomBasicList <int> thisList = Enumerable.Range(1, 6).ToCustomBasicList();

            thisList.RemoveAllOnly(yy => _gameContainer.PlayerList.Any(Items => Items.ChoseNumber == yy));
            thisList.InsertBeginning(0);
            CustomBasicList <string> tempList = thisList.CastIntegerListToStringList();

            _model.AddPopupLists(tempList);
        }