创建GUID时出现System.ArgumentNullException

时间:2016-08-24 12:46:39

标签: c#

这没有任何意义,反思和例外让我相信这没有任何错误,但无论如何我在下一行得到System.ArgumentNullException

Guid testGuid = new Guid("745a17a0-74d3-11d0-b6fe-00a0c90f57da");

抛出;

System.ArgumentNullException occurred
  HResult=-2147467261
  Message=Value cannot be null.
Parameter name: g
  ParamName=g
  Source=mscorlib
  StackTrace:
       at System.Guid..ctor(String g)
  InnerException: 

我甚至SS,以确保你们我不会失去理智。 enter image description here

所以有什么想法可以在这里发生什么?

1 个答案:

答案 0 :(得分:2)

该错误发生在上一行。 Visual Studio调试器有时会进一步显示一行。通常,按“启用编辑”时它会转到正确的行,但根据屏幕截图没有该选项。

(我从来不明白为什么这个常见的错误没有得到修复。)