Ejemplo n.º 1
0
 public void ToString(FileGeneration fg, LocationCell.Mask <bool>?printMask = null)
 {
     fg.AppendLine($"{nameof(LocationCell.Mask<TItem>)} =>");
     fg.AppendLine("[");
     using (new DepthWrapper(fg))
     {
         if (printMask?.Link ?? true)
         {
             fg.AppendItem(Link, "Link");
         }
     }
     fg.AppendLine("]");
 }