2010-04-26 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Mon, 26 Apr 2010 09:00:07 +0000 (09:00 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Mon, 26 Apr 2010 09:00:07 +0000 (09:00 -0000)
* XamlMember.cs : hack GetHashCode().

svn path=/trunk/mcs/; revision=156083

mcs/class/System.Xaml/System.Xaml/ChangeLog
mcs/class/System.Xaml/System.Xaml/XamlMember.cs

index 5721b3943a253e4f100324c4ae7a5ce03d9fc8b0..e68b84daf6a932629d36652ac59e146243aa74f2 100644 (file)
@@ -1,3 +1,7 @@
+2010-04-26  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XamlMember.cs : hack GetHashCode().
+
 2010-04-26  Atsushi Enomoto  <atsushi@ximian.com>
 
        * XamlObjectReader.cs : now it can look into values and pick up
index ea48357d582c7d8ad9295145963566a63b614a9d..6700d162e603d8d10b7a70195122441cb4b3f0b0 100644 (file)
@@ -279,7 +279,7 @@ namespace System.Xaml
 
                public override int GetHashCode ()
                {
-                       throw new NotImplementedException ();
+                       return ToString ().GetHashCode (); // should in general work.
                }
 
                public override string ToString ()