gpt4 book ai didi

c# - 在 C# 中集中 Debug.Assert 和抛出异常的更好方法?

转载 作者:行者123 更新时间:2023-11-30 15:41:44 26 4
gpt4 key购买 nike

我的大部分方法都检查函数中的空参数,所以我想而不是写

Debug.Assert(x != null, "x should not be null");

if (x == null)
{
throw new ArgumentNullException("x");
}

在任何地方,我都会简单地创建一个带有静态方法的静态类来集中它。

然而,这有其自身的问题,即如果 Debug.Assert 被触发,则 VS 将在静态方法中弹出,而不是调用方法所在的位置,这是它喜欢的位置。

只是好奇是否有人有更好的方法来处理这种情况,或者一般来说如何处理这种重复的工作?

谢谢!

最佳答案

另一种方法是DataContracts来自微软研究院。

关于c# - 在 C# 中集中 Debug.Assert 和抛出异常的更好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8091002/

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