CombineHashCodes() protected static method

Combines two hash codes into one.
protected static CombineHashCodes ( int h1, int h2 ) : int
h1 int
h2 int
return int
コード例 #1
0
 public override int GetHashCode()
 {
     return(YamlNode.CombineHashCodes(base.GetHashCode(), YamlNode.GetHashCode(Value)));
 }