One of the solutions in our company consumes a 3rd party service. Communication is done through XML messaging. On our end, we generate classes to be used based on XML sche
If we convert boolean to integer, that would be either 0 or 1. Can you please try:
int val=int.Tryparse(myBooleanValue);
Or
int val= myBooleanValue?1:0;