@@ -2267,7 +2267,7 @@ static int SystemInt32Array1GetItem1(int thisHandle, int index0)
22672267 {
22682268 try
22692269 {
2270- var thiz = ( System . Int32 [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2270+ var thiz = ( int [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
22712271 var returnValue = thiz [ index0 ] ;
22722272 return returnValue ;
22732273 }
@@ -2290,7 +2290,7 @@ static void SystemInt32Array1SetItem1(int thisHandle, int index0, int item)
22902290 {
22912291 try
22922292 {
2293- var thiz = ( System . Int32 [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2293+ var thiz = ( int [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
22942294 thiz [ index0 ] = item ;
22952295 }
22962296 catch ( System . NullReferenceException ex )
@@ -2332,7 +2332,7 @@ static float SystemSingleArray1GetItem1(int thisHandle, int index0)
23322332 {
23332333 try
23342334 {
2335- var thiz = ( System . Single [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2335+ var thiz = ( float [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
23362336 var returnValue = thiz [ index0 ] ;
23372337 return returnValue ;
23382338 }
@@ -2355,7 +2355,7 @@ static void SystemSingleArray1SetItem1(int thisHandle, int index0, float item)
23552355 {
23562356 try
23572357 {
2358- var thiz = ( System . Single [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2358+ var thiz = ( float [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
23592359 thiz [ index0 ] = item ;
23602360 }
23612361 catch ( System . NullReferenceException ex )
@@ -2397,7 +2397,7 @@ static int SystemSingleArray2GetLength2(int thisHandle, int dimension)
23972397 {
23982398 try
23992399 {
2400- var thiz = ( System . Single [ , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2400+ var thiz = ( float [ , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
24012401 var returnValue = thiz . GetLength ( dimension ) ;
24022402 return returnValue ;
24032403 }
@@ -2420,7 +2420,7 @@ static float SystemSingleArray2GetItem2(int thisHandle, int index0, int index1)
24202420 {
24212421 try
24222422 {
2423- var thiz = ( System . Single [ , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2423+ var thiz = ( float [ , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
24242424 var returnValue = thiz [ index0 , index1 ] ;
24252425 return returnValue ;
24262426 }
@@ -2443,7 +2443,7 @@ static void SystemSingleArray2SetItem2(int thisHandle, int index0, int index1, f
24432443 {
24442444 try
24452445 {
2446- var thiz = ( System . Single [ , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2446+ var thiz = ( float [ , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
24472447 thiz [ index0 , index1 ] = item ;
24482448 }
24492449 catch ( System . NullReferenceException ex )
@@ -2485,7 +2485,7 @@ static int SystemSingleArray3GetLength3(int thisHandle, int dimension)
24852485 {
24862486 try
24872487 {
2488- var thiz = ( System . Single [ , , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2488+ var thiz = ( float [ , , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
24892489 var returnValue = thiz . GetLength ( dimension ) ;
24902490 return returnValue ;
24912491 }
@@ -2508,7 +2508,7 @@ static float SystemSingleArray3GetItem3(int thisHandle, int index0, int index1,
25082508 {
25092509 try
25102510 {
2511- var thiz = ( System . Single [ , , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2511+ var thiz = ( float [ , , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
25122512 var returnValue = thiz [ index0 , index1 , index2 ] ;
25132513 return returnValue ;
25142514 }
@@ -2531,7 +2531,7 @@ static void SystemSingleArray3SetItem3(int thisHandle, int index0, int index1, i
25312531 {
25322532 try
25332533 {
2534- var thiz = ( System . Single [ , , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2534+ var thiz = ( float [ , , ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
25352535 thiz [ index0 , index1 , index2 ] = item ;
25362536 }
25372537 catch ( System . NullReferenceException ex )
@@ -2573,7 +2573,7 @@ static int SystemStringArray1GetItem1(int thisHandle, int index0)
25732573 {
25742574 try
25752575 {
2576- var thiz = ( System . String [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2576+ var thiz = ( string [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
25772577 var returnValue = thiz [ index0 ] ;
25782578 return NativeScript . Bindings . ObjectStore . GetHandle ( returnValue ) ;
25792579 }
@@ -2596,7 +2596,7 @@ static void SystemStringArray1SetItem1(int thisHandle, int index0, int itemHandl
25962596 {
25972597 try
25982598 {
2599- var thiz = ( System . String [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
2599+ var thiz = ( string [ ] ) NativeScript . Bindings . ObjectStore . Get ( thisHandle ) ;
26002600 var item = ( string ) NativeScript . Bindings . ObjectStore . Get ( itemHandle ) ;
26012601 thiz [ index0 ] = item ;
26022602 }
0 commit comments