I have a function that translates HTML letter-codes into the real letters. E.g. Æ translates into Æ. For this I want to have a constant array with all the letters.
Like this (this code doesn't work):
const HTMLCodes(32 to 126) as String = (" ", "!", """", "#", "$", "%", ... )
Then I could get...