提问人:Shyam Narayan 提问时间:7/25/2023 更新时间:7/25/2023 访问量:13
有没有办法捕获对象/属性,其对象引用未设置为对象错误的实例?
Is there any way to capture the object/property on which object reference not set to an instance of an object error is thrown?
问:
我正在处理一个现有项目,该项目有数千个对象和属性。
有没有办法捕获确切的对象/属性名称,通过该对象引用未设置为对象错误的实例?
答: 暂无答案
评论
ArgumentNullException.ThrowIfNull(someArg);
Debug.Assert(someArg is not null);