错误:无法隐式转换类型'System.Collections.Generic.LinkedListNode <edge <t>&gt;'到'Edge <t>'</t> </edge <t>

时间:2012-11-11 19:09:37

标签: c#

我使用以下代码获取链接列表工作清单的第一个元素,但我在第2行收到错误

  

Cannot implicitly convert type System.Collections.Generic.LinkedListNode<Edge<T>>' to 'Edge<T>'

  1. LinkedList<Edge<T>> worklist = new LinkedList<Edge<T>>();
  2. Edge<T> curr = worklist.First;
  3. 根据定义。首先上面的代码应该工作。请帮我解决这个问题。

    类Edge的定义如下:

    private sealed class Edge<T>
    {
    
                public  T start;
                public  T end;
    
        /// <summary>
        /// Constructs a new edge between the two indicated endpoints.
        /// </summary>
        /// <param name="start"> The edge's starting point. </param>
        /// <param name="end"> The edge's endpoint. </param>
        public Edge(T start, T end)
        {
            this.start = start;
            this.end = end;
        }
    }
    

1 个答案:

答案 0 :(得分:5)

使用此:

Edge<T> curr = worklist.First.Value;

worklist.First返回LinkedListNode<Edge<T>>。您需要访问此第一个节点的值才能获得Edge<T>