I have an enum which I'm exposing in a web service, the problem is it's messing up the enum name.
enum
{
FOO1A,
FOO2A
}
When I generate client stubs they all come out as FOO_1_A, and FOO_2_A.
Does anyone know how I can fix this so it's back to normal?
--
Ted.
