20 references to GetHashCode
mscorlib (8)
system\object.cs (1)
96return RuntimeHelpers.GetHashCode(this);
system\rttype.cs (1)
4986return RuntimeHelpers.GetHashCode(this);
system\runtime\compilerservices\ConditionalWeakTable.cs (3)
177int hashCode = RuntimeHelpers.GetHashCode(key) & Int32.MaxValue; 464int hashCode = RuntimeHelpers.GetHashCode(key) & Int32.MaxValue; 569int hashCode = RuntimeHelpers.GetHashCode(key) & Int32.MaxValue;
system\runtime\serialization\objectidgenerator.cs (3)
62int hashcode = RuntimeHelpers.GetHashCode(obj); 105RuntimeHelpers.GetHashCode(obj), " at pos: ", pos, " Type: ", obj, "IsTransparentProxy: ", 117BCLDebug.Trace("SER", "[ObjectIDGenerator.GetID] Found objectid: ", (m_ids[pos]), " with hashcode: ", RuntimeHelpers.GetHashCode(obj), " Type: ", obj);
PresentationCore (1)
Core\CSharp\System\Windows\Media\SolidColorBrush.cs (1)
354return System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(obj);
System.Activities (1)
System\Activities\DynamicUpdate\DynamicUpdateMapBuilder.cs (1)
178return RuntimeHelpers.GetHashCode(obj);
System.Activities.Presentation (1)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\ObjectReferenceEqualityComparer.cs (1)
40return RuntimeHelpers.GetHashCode(obj);
System.Core (3)
Microsoft\Scripting\Actions\BindingRestrictions.cs (1)
285return InstanceRestrictionHash ^ RuntimeHelpers.GetHashCode(_instance) ^ _expression.GetHashCode();
Microsoft\Scripting\Compiler\BoundConstants.cs (1)
55return RuntimeHelpers.GetHashCode(Value) ^ Type.GetHashCode();
Microsoft\Scripting\Utils\ReferenceEqualityComparer.cs (1)
30return RuntimeHelpers.GetHashCode(obj);
System.Data (1)
cdf\src\NetFx40\Tools\Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\ObjectReferenceEqualityComparer.cs (1)
40return RuntimeHelpers.GetHashCode(obj);
System.Data.Entity (1)
System\Data\Objects\ObjectStateManager.cs (1)
3775return System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(obj);
System.Runtime.Serialization (1)
System\Runtime\Serialization\ObjectToIdCache.cs (1)
149return (RuntimeHelpers.GetHashCode(o) & 0x7FFFFFFF) % m_objs.Length;
System.Web.Extensions (1)
Script\Serialization\JavaScriptSerializer.cs (1)
397return System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(obj);
WindowsBase (2)
Base\MS\Internal\WeakEventTable.cs (2)
520_hashcode = unchecked(manager.GetHashCode() + RuntimeHelpers.GetHashCode(source)); 527_hashcode = unchecked(manager.GetHashCode() + RuntimeHelpers.GetHashCode(source));