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
Post a Comment