Ejemplo n.º 1
0
        private void AddLine(string text)
        {
            serverOutputBox.AppendLine(text);

            TextLoggerManager.TextEntry(pmsession.Server, pmsession.User, text + '\n');
        }
Ejemplo n.º 2
0
        public void AddLine(string line)
        {
            channelOutputBox.AppendLine(line);

            TextLoggerManager.TextEntry(Channel, line + '\n');
        }
Ejemplo n.º 3
0
 private void AddLine(string text, Color color)
 {
     serverOutputBox.AppendLine(text, color);
     TextLoggerManager.TextEntry(Server, text + '\n');
 }