Beispiel #1
0
        public override void WatchTableDicAdd()
        {
            ScoreClass score1 = new ScoreClass(10);
            ScoreClass score2 = new ScoreClass(10);
            ScoreClass score3 = new ScoreClass(10);

            entity.watchTableDicClass.Add(0, score1);
            entity.watchTableDicClass.Add(1, score2);
            entity.watchTableDicClass.Add(2, score3);
        }
Beispiel #2
0
        public override void WatchTableListAdd()
        {
            ScoreClass scrore1 = new ScoreClass(100);
            ScoreClass scrore2 = new ScoreClass(100);
            ScoreClass scrore3 = new ScoreClass(100);

            entity.watchTableListClass.Add(scrore1);
            entity.watchTableListClass.Add(scrore2);
            entity.watchTableListClass.Add(scrore3);
        }
Beispiel #3
0
        public override void WatchTableDicChangValue()
        {
            ScoreClass score = new ScoreClass(77);

            entity.watchTableDicClass[0] = score;
        }
Beispiel #4
0
        public override void WatchTableListInsert()
        {
            ScoreClass scrore1 = new ScoreClass(88);

            entity.watchTableListClass.Insert(0, scrore1);
        }