using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            LinkedList<V> l = new LinkedList<V>();
            l.AddLast(new V());
            LinkedListNode<V> n = l.First;
            n.Value.b = true;
        }
    }
    struct V
    {
        public int i;
        public bool b;
    }
}为什么会出错?说不是变量呢?