Exemplo n.º 1
0
 public bool Set(uint index, object value)
 {
     if (IsArray)
     {
         return(PPBVarArray.Set(ppvar, index, new Var(value)) == PPBool.True);
     }
     return(false);
 }
Exemplo n.º 2
0
 public bool Set(uint index, Var value)
 {
     if (IsArray)
     {
         return(PPBVarArray.Set(ppvar, index, value) == PPBool.True);
     }
     return(false);
 }