Ejemplo n.º 1
0
        public void ShowLen(int len_)
        {
            if (tmp_seq == null)
            {
                tmp_seq = new List <int>();
            }

            ShowList(ListUtil.GenSequence(len_, 1, 1, tmp_seq));
        }
Ejemplo n.º 2
0
        public void ShowLen(int len_, int jumpTo_ = -1, JumpPosType jumpType_ = JumpPosType.CENTER)
        {
            if (tmp_seq == null)
            {
                tmp_seq = new List <int>();
            }

            ShowList(ListUtil.GenSequence(len_, 1, 1, tmp_seq), jumpTo_, jumpType_);
        }