D
DC
Hi,
I am programming a windows service and all went well until I needed to
use a simple array of chars which I initialize like this:
char[] test = new char[2] {'\x002F', '\x005E'};
Immediatly upon starting the service with this line in code (long
before this line is even being used) I get a System.TypeLoadException
which I cannot debug since it seems to happen somwhere deep in the
..Net dust.
Any clue? Thanks for any suggestion,
Regards
DC
I am programming a windows service and all went well until I needed to
use a simple array of chars which I initialize like this:
char[] test = new char[2] {'\x002F', '\x005E'};
Immediatly upon starting the service with this line in code (long
before this line is even being used) I get a System.TypeLoadException
which I cannot debug since it seems to happen somwhere deep in the
..Net dust.
Any clue? Thanks for any suggestion,
Regards
DC