IRC parsing, tokenization, and state handling in C#

add some links to READMEs

+9 -4
+5 -4
IRCStates/README.md
··· 1 - # IrcStates 1 + # IRCStates 2 2 3 3 port of [jesopo/ircstates](https://github.com/jesopo/ircstates) 4 + 5 + available on [nuget](https://www.nuget.org/packages/IRCStates) 4 6 5 7 bare bones irc client state 6 8 ··· 44 46 { 45 47 while (_encoder.PendingBytes.Any()) 46 48 { 47 - var bytesSent = _socket.Send(_encoder.PendingBytes); 48 - var sentLines = _encoder.Pop(bytesSent); 49 - foreach (var line in sentLines) Console.WriteLine($"> {line.Format()}"); 49 + foreach (var line in _encoder.Pop(_socket.Send(_encoder.PendingBytes))) 50 + Console.WriteLine($"> {line.Format()}"); 50 51 } 51 52 52 53 var bytesReceived = _socket.Receive(_bytes);
+2
IRCTokens/README.md
··· 3 3 this is a c\# port of jesopo's [irctokens]( 4 4 https://github.com/jesopo/irctokens) 5 5 6 + available on [nuget](https://www.nuget.org/packages/IRCTokens) 7 + 6 8 ## usage 7 9 8 10 ### tokenization
+2
README.md
··· 11 11 - [ircstates](https://github.com/jesopo/ircstates) 12 12 - [ircrobots](https://github.com/jesopo/ircrobots) 13 13 14 + an [irctokens.org](https://irctokens.org) project 15 + 14 16 discussion and support on irc: [#irctokens]( 15 17 https://web.tilde.chat/?join=irctokens) 16 18