Ejemplo n.º 1
0
 public DataElement.CInt CreateIntPointer(int pointerId)
 {
     if (CIntPointers.ContainsKey(pointerId))
     {
         return(CIntPointers[pointerId]);
     }
     return(CIntPointers[pointerId] = new DataElement.CInt(CreateScriptValuePointer(pointerId)));
 }
Ejemplo n.º 2
0
 public DataElement.CInt CreateIntConstant(int value)
 {
     if (CIntElements.ContainsKey(value))
     {
         return(CIntElements[value]);
     }
     return(CIntElements[value] = new DataElement.CInt(CreateScriptValue(value)));
 }