Jypeli 10
The simple game programming library
ObjectHelper.cs
Siirry tämän tiedoston dokumentaatioon.
1namespace Jypeli
2{
6 public static class ObjectHelper
7 {
13 public static int GetHashCode(params object[] objects)
14 {
15 if ( objects.Length == 1 ) return objects[0].GetHashCode();
16
17 int hc = objects.Length;
18 for ( int i = 0; i < objects.Length; ++i )
19 {
20 hc = unchecked( hc * 314159 + objects[i].GetHashCode() );
21 }
22
23 return hc;
24 }
25 }
26}
Apuluokka kaikille olioille
Definition: ObjectHelper.cs:7
static int GetHashCode(params object[] objects)
Palauttaa hajautuskoodin usean olion kokoelmalle.
Definition: ObjectHelper.cs:13