예제 #1
0
        public override string ToString()
        {
            return(string.Format(@"{0}
{1}
{2}
{3}
",
                                 Name,
                                 CreationDate,
                                 PossibleValues.Aggregate("", (s, b) => s + b + ","),
                                 Content.Aggregate("", (s, b) => s + b.Aggregate("", (s1, b1) => s1 + b1 + " ") + Environment.NewLine)
                                 ));
        }