Exemplo n.º 1
0
        override public ValueBase GetValue()
        {
            ValueBase[] values = new ValueBase[length];
            int         offset = Offset();

            for (int i = 0; i < length; i++)
            {
                values[i] = items[offset + i].GetValue();
            }
            return(new SeqValue(values));
        }
Exemplo n.º 2
0
 public TaggedValue(int tagId, ValueBase value)
 {
     this.tagId = tagId;
     this.value = value;
 }