[Mono-bugs] [Bug 42075][Nor] New - Attributes missing feature

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Tue, 29 Apr 2003 05:55:51 -0400 (EDT)


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 bugbuddy-import@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=42075

--- shadow/42075	Tue Apr 29 05:55:51 2003
+++ shadow/42075.tmp.28127	Tue Apr 29 05:55:51 2003
@@ -0,0 +1,67 @@
+Bug#: 42075
+Product: Mono/Runtime
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: 
+Status: UNCONFIRMED   
+Resolution: 
+Severity: Unknown
+Priority: Normal
+Component: misc
+AssignedTo: triage@ximian.com                            
+ReportedBy: pbaena@uol.com.ar               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Attributes missing feature
+
+Package: Mono/Runtime
+Priority: Normal
+Version: cvs
+Synopsis: Attributes missing feature
+Bugzilla-Product: Mono/Runtime
+Bugzilla-Component: misc
+
+Description:
+
+
+This works OK in .NET. Other simple types work in mono but not strings.
+
+
+namespace T
+{
+	using System;
+
+	[AttributeUsage (AttributeTargets.Field)]
+	public class myAttAttribute : Attribute
+	{
+		//I'll use various types so I need them boxed
+		public object def;
+		
+		public myAttAttribute (object _def)
+		{
+			def = _def;
+		}
+
+	}
+
+	class test
+	{
+		[myAtt ("crash boom bang")]
+		string a;
+
+		public static void Main ()
+		{
+		}
+	}
+}
+
+
+
+
+
+Setting qa contact to the default for this product.
+   This bug either had no qa contact or an invalid one.
+
+