static void Main(string[] args) { IrcBot ircBot; ircBot = new IrcBot( server: "irc.freenode.net", port: 6667, user: "******", nick: "GadalkaLola", channel: "##net1337", maxRetries: 10 ); new Thread(() => ircBot.ReadFromChannel()).Start(); new Thread(() => ircBot.WriteToChannel()).Start(); }