-2

我收到System.NullReferenceException: Object reference not set to an instance of an object.以下代码的异常。

   string avblCount = "0";

    if (!string.IsNullOrWhiteSpace(item.PART_AVAILABILITY.AVAIL_COUNT.ToString() as string))
    {
         avblCount = item.PART_AVAILABILITY.AVAIL_COUNT.ToString();
    }

此行发生异常。

if (!string.IsNullOrWhiteSpace(item.PART_AVAILABILITY.AVAIL_COUNT.ToString() as string))

我怎样才能解决这个问题 ?

4

1 回答 1

3

这些实体中的一个或多个为空:

  • 物品
  • item.PART_AVAILABILITY
  • item.PART_AVAILABILITY.AVAIL_COUNT

你应该检查哪个是,然后采取相应的行动

于 2013-07-05T07:40:29.440 回答