我是C人,是C#的新手,我必须在项目代码中调试错误。 需要C#专家的帮助,我读了一些关于SO的文章,但是找不到解决方案。
我在Windows 2012服务器计算机上安装了SQL 2012 Express Edition,并尝试运行以下代码。 使用Visual Studio 2010。
from django.core.urlresolvers import resolve
from django.http import HttpResponse, Http404
def myview(request):
url = reverse('foo_name', args=(,))
view, args, kwargs = resolve(url)
kwargs['request'] = request
try:
view(*args, **kwargs)
except Http404:
return HttpResponseRedirect('/')
return HttpResponse("URL did not return 404")
我得到的错误是:
System.IOFileNotFoundException:
在 System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal 在System.Runtime.InteropServices.Marshal.ThrowExceptionForHR 在System.Management.ManagementObjectCollection.ManagementObjectEnumeration.moveNext<>
在System.Management.ManagementObjectCollection.get_Count<>
在设置断点之后,我在moCollection中看到了 - >计数值是
' moclooection.Count'抛出了#System ;IO.FileNotFound'类型的例外情况。 并输入:int {System.IO.FileNotFoundException}
我无法在此处发布调试器屏幕截图,因此我尝试按上述方式进行描述。请指导我解决此错误。