Vba Type-Statement conversion to C# -


this can accomplished have following statement in vba:

type testtype     integerarray(5 100) double end type 

how can accomplish same in c#?

@edit 14:16 08-07-2015

in belief not same question mentioned. question how convert type statement array inside. question mentioned array it's starting index.

actually c# not support kind of arrays based on other start-index zero.

however may do.

double[] myarray = new double[96]; 

alternatvily may create dictionary indexes keys , actual value:

var mydict = new dictionary<int, double>(); 

Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -