AsciiArt.AsciiArt._sendArt C# (CSharp) Method

_sendArt() private method

Iterates through the array containing the ASCII-Art piece.
private _sendArt ( string recipient, string art ) : void
recipient string The receiver of the messages.
art string The array of lines for the image.
return void
        private void _sendArt(string recipient, string[] art)
        {
            foreach (string line in art)
            {
                SendData(MessageTypes.PRIVMSG, recipient + " :" + line);
            }
        }