Hi I am New to Unity.
I got some codes of unity games in javascript. I tried to convert that into C#.
But, In Array part of conversion i was confused.
var pointArray : Array;
pointArray[0]= tempInt;
pointArray[1] = tempInt;
pointArray[5] = tempFloat;
So, We can Assign both integer and float values into the pointArray.
How to convert this type of code into C#??