[Mono-bugs] [Bug 77194][Nor] Changed - System.XML.XPath's Iterator
is buggy?
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Jan 10 09:45:56 EST 2006
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 richard.torkar at htu.se.
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 atsushi at ximian.com 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 richard.torkar at htu.se 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;
+ }
+}
More information about the mono-bugs
mailing list