예제 #1
0
 public void Add(idioInt theInt, idioString theString)
 {
     Value.Add(theString, theInt);
     theInt.Parent    = this;
     theString.Parent = this;
 }
예제 #2
0
 public idioComplex(idioInt theInt, idioString theString)
 {
     Value = new Dictionary <idioString, idioInt>();
     Value.Add(theString, theInt);
 }