How do I create an array of constants? I'm converting a C program to VB that has a 256 byte array defined as
unsigned intCRCArray[256] = {27,123, ... 40 }

In VB, I could individually assign each array element such as:

Dim CRCTable(256) As integer
CRCTable(0) = 27
CRCTable(1) = 123
...
CRCTable(255) = 40

but this is tedious to type in. I want to do something like:
const CRCTable(256) as integer = 27, 123, ..., 40
so that I can simply copy-paste the array from my C program, but this generates an error. Is there a way to do this?

Thanks,
Randy