示例#1
0
            public string ToString(MagicEffectSound.Mask <bool>?printMask = null)
            {
                var fg = new FileGeneration();

                ToString(fg, printMask);
                return(fg.ToString());
            }
示例#2
0
            public Mask <R> Translate <R>(Func <TItem, R> eval)
            {
                var ret = new MagicEffectSound.Mask <R>();

                this.Translate_InternalFill(ret, eval);
                return(ret);
            }
示例#3
0
 public void ToString(FileGeneration fg, MagicEffectSound.Mask <bool>?printMask = null)
 {
     fg.AppendLine($"{nameof(MagicEffectSound.Mask<TItem>)} =>");
     fg.AppendLine("[");
     using (new DepthWrapper(fg))
     {
         if (printMask?.Type ?? true)
         {
             fg.AppendItem(Type, "Type");
         }
         if (printMask?.Sound ?? true)
         {
             fg.AppendItem(Sound, "Sound");
         }
     }
     fg.AppendLine("]");
 }