-
Have posted this on the Code Project and on Visual Studio Feedback. Visual Studio version: Visual Studio 2019 Enterprise, v16.9.2 I have no control over the Windows Updates as this code is on a VM. Hi all, I just recently posted this on the Visual Studio Feedback forums. I am getting weird behavior from the C# As a programmer with deep experience in C-style languages, my understanding is that the However, in my debugging session (and running executable), the following is occurring: What is going on is, the debugger correctly activates a call to the Is there something not configured correctly, or am I simply stroking out? :-D Thank you in advance for any suggestions and/or advice. Sincerely Yours, Brian Hart |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
I am using PostSharp v6.9.3 in my project. When I decorate the offending method with their However, I would hate to have to think that it will be necessary to disable this for all my code's methods that early-return! I have filed a bug report on their issue-tracking system, and hopefully, the issue will be resolved soon. |
Beta Was this translation helpful? Give feedback.
I am using PostSharp v6.9.3 in my project.
When I decorate the offending method with their
[Log(AttributeExclude = true)]
attribute, which suppresses weaving for this method, then the issue goes away.However, I would hate to have to think that it will be necessary to disable this for all my code's methods that early-return! I have filed a bug report on their issue-tracking system, and hopefully, the issue will be resolved soon.