about summary refs log blame commit diff
path: root/Examples/Tokens/Program.cs
blob: e157e31d90aed41f1dcf6a56629c3bd91ee242ef (plain) (tree)
1
2
3
4
                
                
 
                      










                                                                                             
                                                                        








                                              
using System;
using IRCTokens;

namespace TokensSample
{
    public class Program
    {
        public static void Main(string[] args)
        {
            // tokenization
            var line = new Line("@id=123 :ben!~ben@hostname PRIVMSG #channel :hello there!");
            Console.WriteLine(line);
            Console.WriteLine(line.Format());

            // formatting
            var line2 = new Line("USER", "user", "0", "*", "real name");
            Console.WriteLine(line2);
            Console.WriteLine(line2.Format());

            // stateful example
            var client = new Client();
            client.Start();
        }
    }
}