Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=77194 --- shadow/77194 2006-01-10 09:32:55.000000000 -0500 +++ shadow/77194.tmp.4793 2006-01-10 09:45:56.000000000 -0500 @@ -79,6 +79,33 @@ ------- Additional Comments From [EMAIL PROTECTED] 2006-01-10 09:32 ------- Many questions: - Can we assume that the attached binary is reliable? - How can anyone get that "aspectdng.exe" ? - Where is the corresponding code that "reports" that error in your code? + +------- Additional Comments From [EMAIL PROTECTED] 2006-01-10 09:45 ------- +No, we can never assume that the binary is reliable. But it works in +Windows using .NET 1.1. + +The current release (with source code if needed) can be found here: +http://www.dotnetguru.biz/aspectdng/distribution/current/ + +Regarding the final question - all I can say is that if I trim down +the mySample.cs to a minimum it still hits that bug: + +using DotNetGuru.AspectDNG.Config; +using DotNetGuru.AspectDNG.Joinpoints; +using DotNetGuru.AspectDNG.MetaAspects; +using System; + +public class AspectsSample{ + [AroundBody("* Sample::Test(*)")] + public static object YourMethodBodyInterceptor(JoinPoint jp) { + Console.WriteLine("Code before body of '.. +Sample.Test(..)'"); + object result = jp.Proceed(); + Console.WriteLine("Code after body of '.. +Sample.Test(..)'"); + return result; + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
