From: Atsushi Eno Date: Mon, 26 Apr 2010 09:00:07 +0000 (-0000) Subject: 2010-04-26 Atsushi Enomoto X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=927b6b607cf6a650c8949116d6f03bb680fbe3cc;p=mono.git 2010-04-26 Atsushi Enomoto * XamlMember.cs : hack GetHashCode(). svn path=/trunk/mcs/; revision=156083 --- diff --git a/mcs/class/System.Xaml/System.Xaml/ChangeLog b/mcs/class/System.Xaml/System.Xaml/ChangeLog index 5721b3943a2..e68b84daf6a 100644 --- a/mcs/class/System.Xaml/System.Xaml/ChangeLog +++ b/mcs/class/System.Xaml/System.Xaml/ChangeLog @@ -1,3 +1,7 @@ +2010-04-26 Atsushi Enomoto + + * XamlMember.cs : hack GetHashCode(). + 2010-04-26 Atsushi Enomoto * XamlObjectReader.cs : now it can look into values and pick up diff --git a/mcs/class/System.Xaml/System.Xaml/XamlMember.cs b/mcs/class/System.Xaml/System.Xaml/XamlMember.cs index ea48357d582..6700d162e60 100644 --- a/mcs/class/System.Xaml/System.Xaml/XamlMember.cs +++ b/mcs/class/System.Xaml/System.Xaml/XamlMember.cs @@ -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 ()