G
gpsmobiler
Hi,
I found through a lot of exhausting searching, that the following C#
code will cause the IL code below:
const byte ICON_MONO12BY12 =0;
....... IL-file....
.field literal private static unsigned int8 'a' = uint8 (0)
When ILASM tries to compile the IL code, I get this error:
error : syntax error at token 'uint8' in: .field literal public
static unsigned int8 'a' = uint8 (0)
If I change my C# code to use 'const sbyte ...' then it works.
Does anyone know if there is a fix for this bug? (somewhere to get
better ILASM/ILDASM executables?)
I found through a lot of exhausting searching, that the following C#
code will cause the IL code below:
const byte ICON_MONO12BY12 =0;
....... IL-file....
.field literal private static unsigned int8 'a' = uint8 (0)
When ILASM tries to compile the IL code, I get this error:
error : syntax error at token 'uint8' in: .field literal public
static unsigned int8 'a' = uint8 (0)
If I change my C# code to use 'const sbyte ...' then it works.
Does anyone know if there is a fix for this bug? (somewhere to get
better ILASM/ILDASM executables?)