Esempio n. 1
0
 public Annottated(bool initialize = true)
 {
     if (initialize)
     {
         timer_ = StatsTimer.Create("latency");
     }
 }
Esempio n. 2
0
 void OnConnected(object sender, EventArgs e)
 {
     try
     {
         _ircClient.Login(txtNick.Text, txtNick.Text, 0, txtNick.Text);
         _ircClient.RfcJoin(txtChannel.Text);
         ListenThread = new Thread(new ThreadStart(_ircClient.Listen));
         ListenThread.Start();
         StatsTimer.Start();
     }
     catch
     {
     }
 }