摘要: using System;using System.Collections.Generic;using System.Linq;namespace TreeNodes{public interface INodeInfomation{string DisplayName { get; set; }string Path { get; set; }}class HierarchyObject<T> where T : INodeInfomation{public HierarchyObject(){Id = Guid.NewGuid();Children = new List< 阅读全文
posted @ 2013-05-25 22:08 chunchill 阅读(304) 评论(0) 推荐(0) 编辑