public void Delete()
{
tail = Current.previous; Current = tail;
}
为什么这个函数不能实现节点的删除
tail .Next还是指向你要删除的这个节点的吧.你想怎么删除呢