Cannot use ref or out parameter inside an anonymous method [duplicate]

。_饼干妹妹 提交于 2020-11-29 08:21:05

问题


I have a problem with my code in c# if someone could help resolve my problem.

In a function I am parsing a Xml file and saving it to a struct.

Then I try to retreive some info from said struct with a specific node id and my code fails with

"Cannot use ref or out parameter 'c' inside an anonymous method, lambda expression, or query expression"

Here is my code:

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;
}

回答1:


Well, you're not allowed to use a ref or a out parameter in an anonymous method or a lambda, just as the compiler error says.

Instead you have to copy the value out of the ref parameter into a local variable and use that:

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



回答2:


As suggested in other answers you have to copy the ref variable locally in your method. The reason why you have to do it is because lambdas/linq queries change the lifetime of variables that they capture causing the parameters to live longer than the current method frame as the value can be accessed after the method frame is no longer on the stack.

There is an interesting answer here that explains carefully why you can't use ref/out parameters in anonymous methods.




回答3:


You should pull the retrieval of the ID out of the anonymous method:

var nodeId = c.NodeID;

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


来源:https://stackoverflow.com/questions/29698159/cannot-use-ref-or-out-parameter-inside-an-anonymous-method

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!