Code Analysis: How to Correctly Resolve CA1300 – "Specify MessageBox Options"
This is the first installment of what I hope to be many short bits of guidance about correctly resolving some of the more complex warnings coming out of FxCop and Code Analysis. The CA1300 warning is specifically about the right-to-left or left-to-right reading order of a message box. The documentation for the warning alludes that a message box doesn't automatically inherit the containing form's reading order or the reading order from the user's current culture. Although, I can't find any documentation that confirms either. In any case, this is a rather complex warning to resolve, you possibly have to traverse the form's … Continue reading Code Analysis: How to Correctly Resolve CA1300 – "Specify MessageBox Options"