gpt4 book ai didi

c# - 这个 Null 异常怎么可能。需要帮助解释调用堆栈

转载 作者:太空宇宙 更新时间:2023-11-03 13:59:08 24 4
gpt4 key购买 nike

在我的 REST WCF 服务中,我记录了 WCF 堆栈级别的所有异常 (IErrorHandler)

这是我的代码:

public void PostPositions(List<Position> positions)
{
if (!this.ValidateRequest()) return;
foreach (var position in positions)
{

我得到异常:

Object reference not set to an instance of an object.

at Web.Services.MobileService.PostPositions(List`1 positions)
in C:\CodeWorkspace\ClientServerCode\Web.Services\Rest\MobileService.cs:line 1170 at SyncInvokePostPositions(Object , Object[] , Object[] ) at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)

我代码中的第 1170 行用于 if (!this.ValidateRequest()) return;

这是什么意思?没有静态方法,我使用类的实例并且 this 确实存在。如果在 ValidateRequest() 内部发生异常,我希望堆栈跟踪能够显示这一点。

有什么建议吗?

最佳答案

我愿意打赌 positions 是 null 而 foreach(var position in positions) 是调用 GetEnumerator() 时抛出异常的原因 关于职位。

if(positions != null)
{
foreach(var position in positions)
{
...
}
}

正如您可能猜到的那样,行号计算在这里很容易变得有点困惑,因为 foreach 循环只是像这样的语法糖:

IEnumerator<Position> enumerator = positions.GetEnumerator();

try
{
Position position;

while(enumerator.MoveNext())
{
position = enumerator.Current;

//The code from the body of your foreach loop goes here
}
}
finally
{
//Clean up the enumerator
}

关于c# - 这个 Null 异常怎么可能。需要帮助解释调用堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11143116/

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