[Mono-bugs] [Bug 62232][Wis] Changed - We don't report cs0208

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 29 Dec 2004 23:14:25 -0500 (EST)


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 bmaurer@users.sf.net.

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

--- shadow/62232	2004-12-29 08:52:57.000000000 -0500
+++ shadow/62232.tmp.26183	2004-12-29 23:14:24.000000000 -0500
@@ -112,6 +112,22 @@
 Created an attachment (id=11747)
 final one
 
 
 ------- Additional Comments From duncan@ximian.com  2004-12-29 08:52 -------
 Could this be committed?
+
+------- Additional Comments From bmaurer@users.sf.net  2004-12-29 23:14 -------
+-FieldInfo [] fields = t.GetFields ();
++FieldInfo [] fields = t.GetFields (BindingFlags.Public |
+BindingFlags.NonPublic | BindingFlags.Static);
+
+That needs to be .Instance. My mistake for giving you bad info ;-).
+
+-if (f.FieldBuilder.IsStatic)
++if (f.FieldBuilder == null || f.FieldBuilder.IsStatic)
+
+I am sure I asked this before, but can you tell me what == null means
+here?
+
+With the fix and an expl for the == null, I think I have reviewed this
+to death. Miguel, any comments?