未验证 提交 4dfe5865 编写于 作者: I Ilya 提交者: GitHub

avoid boxing (#4220)

上级 afb6de99
......@@ -3,6 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using MS.Internal.WindowsBase; // for FriendAccessAllowed
......@@ -51,7 +52,7 @@ public void SetValue(DependencyObject instance, T value)
EntryIndex entryIndex = instance.LookupEntry(_globalIndex);
// Set the value if it's not the default, otherwise remove the value.
if (!object.ReferenceEquals(value, _defaultValue))
if (!EqualityComparer<T>.Default.Equals(value, _defaultValue))
{
instance.SetEffectiveValue(entryIndex, null /* dp */, _globalIndex, null /* metadata */, value, BaseValueSourceInternal.Local);
_hasBeenSet = true;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册