由于以前的函数求值超时,函数求值被禁用。必须继续执行才能重新启用函数求值...
在调试程序的时候,跟踪某个参数,显示这个提示:_Unused = 由于以前的函数求值超时,函数求值被禁用。必须继续执行才能重新启用函数求值。这个会不会影响程序呢?哪位大哥给提示下呢...下面是代码和截图:
程序代码: public static Features SearchLayerFeature(AxMap axMap, double X, double Y, string LayerName, float Radius)
{
Layer layer = null;
try
{
layer = axMap.Layers.Item(LayerName);
MapXLib.Point source = new PointClass();
source.Set(X, Y);
return layer.SearchWithinDistance(source, (double) Radius, 7, 1);
}
catch
{
return null;
}
}







