You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Format.cs 523 B

1234567891011121314
  1. namespace Discord
  2. {
  3. public static class Format
  4. {
  5. public static string Escape(string text) => null;
  6. public static string Bold(string text, bool escape = true) => null;
  7. public static string Italics(string text, bool escape = true) => null;
  8. public static string Underline(string text, bool escape = true) => null;
  9. public static string Strikeout(string text, bool escape = true) => null;
  10. public static string Code(string text, string language = null) => null;
  11. }
  12. }