摘要:
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< 阅读全文