I want to use a REALLY big Array in one of my programs. I currently have this because I dont need it that long at the moment:
My problem is that when i run this i get a memory exception error and i know its because of the size because a smaller version of it works. This poses a problem as the array will need to have about 20 of the 27's (but this could go up to 30 if i wanted it to work perfectly).
There is a good reason because i want to store words in it and to do so i have each part of the array = a letter so 1 is A, 2 is B etc (With 0 being no letter) and then the last bit store certain details about the word.
Is there a way to get around the restricted length or are there other languages allow larger sizes?
Global Dictionary:String[27,27,27,27,27,27,27,27,27,27,27,27,5]
My problem is that when i run this i get a memory exception error and i know its because of the size because a smaller version of it works. This poses a problem as the array will need to have about 20 of the 27's (but this could go up to 30 if i wanted it to work perfectly).
There is a good reason because i want to store words in it and to do so i have each part of the array = a letter so 1 is A, 2 is B etc (With 0 being no letter) and then the last bit store certain details about the word.
Is there a way to get around the restricted length or are there other languages allow larger sizes?