Base:
method
GetHashCode
System.ValueType.GetHashCode()
18 references to GetHashCode
mscorlib (3)
system\collections\generic\equalitycomparer.cs (1)
466return x_final.GetHashCode();
system\enum.cs (1)
779return (*(long*)pValue).GetHashCode();
system\security\principal\sid.cs (1)
676int hashCode = ((long)this.IdentifierAuthority).GetHashCode();
System (1)
services\monitoring\system\diagnosticts\CounterSample.cs (1)
168return rawValue.GetHashCode();
System.Activities (2)
System\Activities\Bookmark.cs (1)
189return this.id.GetHashCode();
System\Activities\BookmarkScope.cs (1)
153return this.temporaryId.GetHashCode();
System.Data (2)
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
632return IsNull ? 0 : Value.GetHashCode();
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
618return IsNull ? 0 : m_value.GetHashCode();
System.Drawing (1)
commonui\System\Drawing\Color.cs (1)
1844return unchecked( value.GetHashCode() ^
System.IO.Log (1)
System\IO\Log\PolicyUnit.cs (1)
54this.value.GetHashCode());
System.Web (8)
Configuration\FileDetails.cs (1)
49return HashCodeCombiner.CombineHashCodes(_exists.GetHashCode(), _fileSize.GetHashCode(),
UI\Util.cs (1)
436string uniqueToken = DateTime.Now.Ticks.GetHashCode().ToString("x", CultureInfo.InvariantCulture);
Util\FileUtil.cs (2)
59return HashCodeCombiner.CombineHashCodes(LastWriteTime.GetHashCode(), Size.GetHashCode());
Util\HashCodeCombiner.cs (4)
82AddInt(l.GetHashCode()); 117Debug.Trace("HashCodeCombiner", "Hashcode: " + fileSize.GetHashCode().ToString("x", CultureInfo.InvariantCulture)); 118AddInt(fileSize.GetHashCode()); 247internal int CombinedHash32 { get { return _combinedHash.GetHashCode(); } }