예제 #1
0
파일: CellTree.cs 프로젝트: x97mdr/fitsharp
        public override string ToString()
        {
            var branches = Branches.Aggregate(new StringBuilder(), (t, u) => t.Append(u)).ToString();

            return(string.Format(Value == null || string.IsNullOrEmpty(Value.Text) ? "{0}" : Value.Text, branches));
        }