c# - Can I mark a class as not my code so the debugger steps over it? -
i have utility class has been thoroughly tested, , not want vs debugger step of methods. think have heard of way mark not code just code
debugger setting causes debugger step on these method calls, life of me cannot recall class attribute (nor can google it).
i know separate class own assembly , build in release mode alleviate issue, step of assembly (and keep class is).
is possible, or dreaming option?
update
i did testing 2 options (debuggerstepthrough , debuggernonusercode), , found debuggernonusercode behaves same framework when having just code
enabled / disabled. debuggerstepthrough
attribute causes debugger skip section marked attribute. consistency's sake, went debuggernonusercode.
you looking debuggernonusercode attribute.
Comments
Post a Comment