Using C Arrays


	UInt8 MyArray[10];
	MyArray[0] = 0x00;
	MyArray[1] = 0x01;

	int LengthOfMyArray = length:sizeof(MyArray);