rd-net/RdFramework/Impl/RdList.cs [438:455]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override void Print(PrettyPrinter printer) { base.Print(printer); if (!printer.PrintContent) return; printer.Print(" ["); if (Count > 0) printer.Println(); using (printer.IndentCookie()) { foreach (var v in this) { v.PrintEx(printer); printer.Println(); } } printer.Println("]"); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - rd-net/RdFramework/Impl/RdSet.cs [242:259]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public override void Print(PrettyPrinter printer) { base.Print(printer); if (!printer.PrintContent) return; printer.Print(" ["); if (Count > 0) printer.Println(); using (printer.IndentCookie()) { foreach (var v in this) { v.PrintEx(printer); printer.Println(); } } printer.Println("]"); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -