Hi, I would like to use the FXCop introspection API to create a custom rule that verifies the following:
in MethodA, the code sets a property B on a static class C to value D :
void MethodA() { C.B=D; }
how can I write this? also how can I debug through a rule?