c# – 不能在匿名方法中使用ref或out参数

参见英文答案 > C# Cannot use ref or out parameter inside an anonymous method body                                    3个
我在c#中的代码有问题,如果有人可以帮我解决我的问题.

函数中,我正在解析Xml文件并将其保存到结构中.

然后我尝试从具有特定节点ID的所述结构中检索一些信息,并且我的代码失败了

“Cannot use ref or out parameter ‘c’ inside an anonymous method, lambda expression, or query expression”

这是我的代码

public void XmlParser(ref Point a, ref Point b, ref Point c)
{
     XDocument xdoc = XDocument.Load(XmlDirPath); 
     var coordinates = from r in xdoc.Descendants("move")
                        where int.Parse(r.Attribute("id").Value) == c.NodeID  // !! here is the error !!
                        select new
                        {
                              X = r.Element("x").Value,
                              Y = r.Element("y").Value,
                              Z = r.Element("z").Value, 
                              nID = r.Attribute("id").Value
                         };

     foreach (var r in coordinates)
     {
          c.x = float.Parse(r.X1, CultureInfo.InvariantCulture);
          c.y = float.Parse(r.Y1, CultureInfo.InvariantCulture);
          c.z = float.Parse(r.Z1, CultureInfo.InvariantCulture);
          c.NodeID = Convert.ToInt16(r.nID);
     }
}

public struct Point
{
    public  float x;
    public  float y;
    public  float z;
    public  int   NodeID;
}

解决方法:

好吧,你不允许在匿名方法或lambda中使用ref或out参数,正如编译器错误所说的那样.

相反,您必须将ref参数中的值复制到局部变量中并使用:

var nodeId = c.NodeID;
var coordinates = from r in xdoc.Descendants("move")
    where int.Parse(r.Attribute("id").Value) == nodeId
    ...

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念