I've just been puzzling over a bug in my code which turns out to have been caused by CodeIt.Right
I had an enum as follows
public enum ActionType
{
IR_CODE = 1,
BUTTON_ALIAS = 2
}
There was more of it but that gives you the idea.
CodeIt.Right quite rightly complained about the case of these enum values - I chose to correct them - but didn't check the results since I'd had no problems with earlier corrections of the same type.
Unfortunately, CodeIt.Right changed the enum values to
public enum ActionType
{
IRCode,
ButtonAlias
}
completely dropping the "= 1" .
This is clearly not correct behaviour.