vote up 2 vote down star
1

Is it any best practice to tag .net generated code?

What I want to achieve is following:

  • Debugger step by default not inside the property or method
  • Metrics are not calulated for those classes/members
flag

80% accept rate

2 Answers

vote up 1 vote down check

Well, for the first - attributes ([DebuggerStepThrough] being the most important for your question); some useful ones here:

[DebuggerStepThrough, DebuggerHidden, DebuggerNonUserCode]
[CompilerGenerated] // arguably untrue...

Not sure about the second question.

link|flag
vote up -1 vote down

You might consider using Postsharp to manipulate the code once it is compiled.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.