Squishy.Irc.IrcClient.SendNow C# (CSharp) Method

SendNow() public method

Uses the Client.SendNow(text) to send a line of text immediately to the server.
public SendNow ( string text ) : void
text string
return void
        public void SendNow(string text, params object[] args)
        {
            Client.SendNow(string.Format(text, args));
        }