TypeLoadException cf double[][,]

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Any type declaration of double[][,] leads to a TypeLoadException when run in
cf (no compilation error), i.e. cf = reduced c# set??? see example below
comments?
@ndre

this compiles with cf, but give an TypeLoadException:
public class test_TypeLoadException
{
static void Main()
{
double[][,] x;
}
}
 
Just try it on your system (i checked on 2 different systems).
@ndre
ps: you can replace double by any other base type.

cody said:
Maybe some .NET dll's are missing are corrupted.

@ndre said:
Any type declaration of double[][,] leads to a TypeLoadException when run
in
cf (no compilation error), i.e. cf = reduced c# set??? see example below
comments?
@ndre

this compiles with cf, but give an TypeLoadException:
public class test_TypeLoadException
{
static void Main()
{
double[][,] x;
}
}
 
Back
Top