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