链表?struct cell
{
    int row;
    int col;
    object value;
    cell nextcell;  //下一个
    cell prevcell;  //上一个
}

解决方案 »

  1.   

    终于来人了,砖家,我举个例子,你看能实现么
    cell(x,1,cell(y,1,cell(z,1,m)))
      

  2.   

    class Node<T>
    {
        public Node<T> Left { get; set; }
        public Node<T> Mid { get; set; }
        public Node<T> Right { get; set; }
        public T Value { get; set; }
    }
      

  3.   

    可以 API--> IDynamicMetaObjectProvider  
    但是效率很低
      

  4.   

    这些结构要怎么调用呢?cell.nextcell?node.left?