Font.GetHashCode 方法   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取此 Font的哈希代码。
public:
 override int GetHashCode();
	public override int GetHashCode ();
	override this.GetHashCode : unit -> int
	Public Overrides Function GetHashCode () As Integer
	返回
此 Font的哈希代码。
示例
下面的代码示例设计用于 Windows 窗体,它需要 PaintEventArgse,这是 Paint 事件处理程序的参数。 该代码执行以下操作:
创建 Font。
获取该字体的哈希代码。
显示包含哈希代码值的消息框。
public:
   void GetHashCode_Example( PaintEventArgs^ /*e*/ )
   {
      // Create a Font object.
      System::Drawing::Font^ myFont = gcnew System::Drawing::Font( "Arial",16 );
      // Get the hash code for myFont.
      int hashCode = myFont->GetHashCode();
      // Display the hash code in a message box.
      MessageBox::Show( hashCode.ToString() );
   }
public void GetHashCode_Example(PaintEventArgs e)
{
             
    // Create a Font object.
    Font myFont = new Font("Arial", 16);
             
    // Get the hash code for myFont.
    int hashCode = myFont.GetHashCode();
             
    // Display the hash code in a message box.
    MessageBox.Show(hashCode.ToString());
}
Public Sub GetHashCode_Example(ByVal e As PaintEventArgs)
    ' Create a Font object.
    Dim myFont As New Font("Arial", 16)
    ' Get the hash code for myFont.
    Dim hashCode As Integer = myFont.GetHashCode()
    ' Display the hash code in a message box.
    MessageBox.Show(hashCode.ToString())
End Sub