I would like to create an array indexed with Int16 values, with each element being an SByte.
If this is possible, How would I go about structuring my statement to achieve this? This is what I have so far.
//This saves the array size after creation for reference by other functions in the class
public static Int16 ArraySize = 0;
//input array size input by user from UI, min 0, max 1024
public static void InitArray(Int16 inputArraysize)
{
sbyte[] Arrayarray = new sbyte[inputArraysize];
Array.ArraySize = inputArraysize;
Debug.output("RAM ARRAY CREATED");
}
inputRAMsizeas ansbytedue to the obvious constrictions in value.