gpt4 book ai didi

c# - NUnit.Framework.Assert.IsInstanceOfType() 已过时

转载 作者:IT王子 更新时间:2023-10-29 03:39:43 28 4
gpt4 key购买 nike

我正在读这本书 Professional Enterprise .NET我在一些示例程序中注意到了这个警告:

'NUnit.Framework.Assert.IsInstanceOfType(System.Type, object)' is obsolete

现在我可能已经回答了我自己的问题,但是要解决此警告是否只是将 Assert.IsInstanceOfType() 替换为 Assert.IsInstanceOf() 的情况?例如这个:

Assert.IsInstanceOfType(typeof(ClassName), variableName);

会变成:

Assert.IsInstanceOf(typeof(ClassName), variableName);

最佳答案

来自 the NUnit documentation IsInstanceOf 方法是一种通用方法,因此您可以使用它:

Assert.IsInstanceOf<ClassName>(variableName);

关于c# - NUnit.Framework.Assert.IsInstanceOfType() 已过时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2658408/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com