Assert.AreEqual(对象, 对象) 方法
Assert.AreEqual(object, object)
方法(在命名空间 Microsoft.VisualStudio.TestTools.UnitTesting
中)如何确定参数是否相等?它是否使用 Object.Equals(object, object)
方法(在 System
命名空间中)?
How does the Assert.AreEqual(object, object)
method (in the namespace Microsoft.VisualStudio.TestTools.UnitTesting
) determine whether the parameters are equal? Does it make use of the Object.Equals(object, object)
method (in the System
namespace)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 reflector 你可以看到它确实使用了 Object.Equals。
using reflector you can see that it does indeed use Object.Equals.