public SetValueOperation(SetValueOperationEnum key, short objIndex)
 {
     dictIndex     = (byte)enumArray.IndexOf(key);
     option        = 1;
     this.objIndex = objIndex;
 }
 public SetValueOperation(SetValueOperationEnum key, string value)
 {
     dictIndex  = (byte)enumArray.IndexOf(key);
     option     = 0;
     this.value = value;
 }