⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 groupcls.cs

📁 我自己开发的双色球预测软件
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace cpzh
{
    public class GroupCls
    {
        private int[] firstGroup;   //第一组的成员
        private int[] secondGroup;  //第二组的成员
        private int[] thirdGroup;   //第三组的成员
        private int firstNum;       //从第一组中选出的种子成员数
        private int secondNum;      //从第二组中选出的种子成员数
        private int thirdNum;       //从第三组中选出的种子成员数

        public GroupCls()
        { }

        public int[] GetFirstGroup()
        {
            return this.firstGroup;
        }
        public void SetFirstGroup(int[] group)
        {
            this.firstGroup = group;
        }

        public int[] GetSecondGroup()
        {
            return this.secondGroup;
        }
        public void SetSecondGroup(int[] group)
        {
            this.secondGroup = group;
        }

        public int[] GetThirdGroup()
        {
            return this.thirdGroup;
        }
        public void SetThirdGroup(int[] group)
        {
            this.thirdGroup = group;
        }

        public int GetFirstNum()
        {
            return this.firstNum;
        }
        public void SetFirstNum(int iFirstNum)
        {
            this.firstNum = iFirstNum;
        }

        public int GetSecondNum()
        {
            return this.secondNum;
        }
        public void SetSecondNum(int secondNum)
        {
            this.secondNum = secondNum;
        }

        public int GetThirdNum()
        {
            return this.thirdNum;
        }
        public void SetThirdNum(int thirdNum)
        {
            this.thirdNum = thirdNum;
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -