[Mono-bugs] [Bug 82446][Wis] New - [PATCH] Socket.GetHashCode .NET 2.0 compatibility

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Wed Aug 15 06:08:09 EDT 2007


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 robertj at gmx.net.

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

--- shadow/82446	2007-08-15 06:08:09.000000000 -0400
+++ shadow/82446.tmp.8229	2007-08-15 06:08:09.000000000 -0400
@@ -0,0 +1,41 @@
+Bug#: 82446
+Product: Mono: Class Libraries
+Version: 1.2
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: System
+AssignedTo: dick at ximian.com                            
+ReportedBy: robertj at gmx.net               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [PATCH] Socket.GetHashCode .NET 2.0 compatibility
+
+Issue:
+http://lists.ximian.com/pipermail/mono-devel-list/2007-August/024461.html
+
+
+Patch:
+http://lists.ximian.com/pipermail/mono-devel-list/2007-August/024465.html
+
+
+Test case:
+
+using System;
+using System.Net.Sockets;
+
+class Test
+{
+	static void Main () {
+		Socket s = new Socket (AddressFamily.InterNetwork, SocketType.Stream,
+ProtocolType.Tcp);
+		Console.WriteLine (s.GetHashCode ());
+		s.Close ();
+		Console.WriteLine (s.GetHashCode ());
+	}
+}


More information about the mono-bugs mailing list