I want to have an array that is larger an 65535 bytes. I need to be able to address this array a byte at a time. Can I simply use a index that is defined as a long? Do I have to break the array up into two parts - the first 64K and "the rest"? What is the best way to do this? Thanks in advance.