コード例 #1
0
 public SimpleTypeVarList(RobotVariableType vartype, short listsize, short startindex, double[] varlistarray)
 {
     VarType    = vartype;
     ListSize   = listsize;
     StartIndex = startindex;
     varlistarray.CopyTo(VarListArray, 0);
 }
コード例 #2
0
 public SimpleTypeVarList(RobotVariableType vartype, short listsize, short startindex)
 {
     VarType    = vartype;
     ListSize   = listsize;
     StartIndex = startindex;
 }