projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ebb94e
)
Add comment about F# dependency on hashing algorithm
author
Jan Kotas
<jkotas@microsoft.com>
Fri, 28 Oct 2016 11:25:48 +0000
(
04:25
-0700)
committer
Jan Kotas
<jkotas@microsoft.com>
Fri, 28 Oct 2016 11:46:08 +0000
(
04:46
-0700)
src/mscorlib/src/System/Tuple.cs
patch
|
blob
|
history
diff --git
a/src/mscorlib/src/System/Tuple.cs
b/src/mscorlib/src/System/Tuple.cs
index
99164bc
..
ce92da4
100644
(file)
--- a/
src/mscorlib/src/System/Tuple.cs
+++ b/
src/mscorlib/src/System/Tuple.cs
@@
-7,6
+7,10
@@
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
+//
+// Note: F# compiler depends on the exact tuple hashing algorithm. Do not ever change it.
+//
+
namespace System {
/// <summary>