fCraft.IRC.IRCThread.Send C# (CSharp) Method

Send() private method

private Send ( [ msg ) : void
msg [
return void
            private void Send( [NotNull] string msg ) {
                if ( msg == null )
                    throw new ArgumentNullException( "msg" );
                localQueue.Enqueue( msg );
            }