public void Add(idioInt theInt, idioString theString)
 {
     Value.Add(theString, theInt);
     theInt.Parent    = this;
     theString.Parent = this;
 }
 public idioComplex(idioInt theInt, idioString theString)
 {
     Value = new Dictionary <idioString, idioInt>();
     Value.Add(theString, theInt);
 }