Esempio n. 1
0
 public override string ToString()
 {
     return("Emoji {\n" +
            $"description='{Description}',\n" +
            $"supportsFitzpatrick={SupporrtsFitzpartick},\n" +
            $"aliases=[{(Aliases.Count > 0 ? Aliases.Aggregate((x, y) => $"{x}, {y}") : "null")}],\n" +
            $"tags=[{(Tags.Count > 0 ? Tags.Aggregate((x, y) => $"{x}, {y}") : "null")}],\n" +
            $"unicode='{Unicode}',\n" +
            $"htmlDec='{HtmlDecimal}',\n" +
            $"htmlHex='{HtmlHexadecimal}'\n" +
            "}");
 }