Ejemplo n.º 1
0
 public static string StyleText(this string text, IrcFormatText.Style style = IrcFormatText.Style.Reset)
 {
     if (style == IrcFormatText.Style.Reset)
     {
         return(text);
     }
     return
         (IrcFormatText.StyleChar[IrcFormatText.GetStyleCodeInt(style)]
          + text
          + IrcFormatText.StyleChar[IrcFormatText.GetStyleCodeInt(style)]
         );
 }
Ejemplo n.º 2
0
 private static int GetStyleCodeInt(IrcFormatText.Style style)
 {
     return((int)style);
 }