Type.GetHashCode Method
.NET Framework 4.5
Returns the hash code for this instance.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
This method overrides Object.GetHashCode.
The following example displays the hash code of the System.Windows.Forms.Button class.
using System; using System.Security; using System.Reflection; class FieldsSample { public static void Main() { Type myType = typeof(System.Net.IPAddress); FieldInfo [] myFields = myType.GetFields(BindingFlags.Static | BindingFlags.NonPublic); Console.WriteLine ("\nThe IPAddress class has the following nonpublic fields: "); foreach (FieldInfo myField in myFields) { Console.WriteLine(myField.ToString()); } Type myType1 = typeof(System.Net.IPAddress); FieldInfo [] myFields1 = myType1.GetFields(); Console.WriteLine ("\nThe IPAddress class has the following public fields: "); foreach (FieldInfo myField in myFields1) { Console.WriteLine(myField.ToString()); } try { Console.WriteLine("The HashCode of the System.Windows.Forms.Button type is: {0}", typeof(System.Windows.Forms.Button).GetHashCode()); } catch(SecurityException e) { Console.WriteLine("An exception occurred."); Console.WriteLine("Message: "+e.Message); } catch(Exception e) { Console.WriteLine("An exception occurred."); Console.WriteLine("Message: "+e.Message); } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.