コード例 #1
0
 public override string ToString()
 {
     return(new StringBuilder()
            .AppendLine("Drinks")
            .AppendLine($"-Cola {Colas.Display(2)}")
            .AppendLine($"-Beer {Beers.Display(2)}")
            .AppendLine($"-Other {Other.Display(2)}")
            .ToString());
 }