Ejemplo n.º 1
0
            public string ToString(FactionOwner.Mask <bool>?printMask = null)
            {
                var fg = new FileGeneration();

                ToString(fg, printMask);
                return(fg.ToString());
            }
Ejemplo n.º 2
0
            public new Mask <R> Translate <R>(Func <TItem, R> eval)
            {
                var ret = new FactionOwner.Mask <R>();

                this.Translate_InternalFill(ret, eval);
                return(ret);
            }
Ejemplo n.º 3
0
 public void ToString(FileGeneration fg, FactionOwner.Mask <bool>?printMask = null)
 {
     fg.AppendLine($"{nameof(FactionOwner.Mask<TItem>)} =>");
     fg.AppendLine("[");
     using (new DepthWrapper(fg))
     {
         if (printMask?.Faction ?? true)
         {
             fg.AppendItem(Faction, "Faction");
         }
         if (printMask?.RequiredRank ?? true)
         {
             fg.AppendItem(RequiredRank, "RequiredRank");
         }
     }
     fg.AppendLine("]");
 }