This can probably be accomplished very easily but I have the following statement in VBA:
Type testType
integerArray(5 To 100) As Double
End Type
How can I accomplish the same in C#?
@Edit 14:16 08-07-2015
In my belief this is not the same as the question mentioned. This is a question how to convert the Type statement with an array inside. The question mentioned is only about an array with it's starting index.
integerArray(5 To 100) As Integerdo exactly in VBA?0is allowed? If i try the code in VB.NET(which is upwards compatible) i get a compiler error: "Array lower bounds can be only '0'" msdn.microsoft.com/en-us/library/ttw7c10x(v=vs.90).aspx