public class TelnetParser
    {
        public event EventHandler<TelnetCommandEventArgs> Command;
...

C# Created a Telnet Parser wit...

by Sekhat, February 02, 2010 12:01, 1 refactoring, tagged with C#, TDD, Telnet

So I've was just using TDD ...

B20991026b45ee0d77e9bbb2b6776097 Talk
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;

...

C# Testing the Singleton Pattern

by Brandon Joyce, February 09, 2009 17:31, 5 refactorings, tagged with singleton, TDD, pattern

I am doing a step by step e...

Dc45352908dbb9a4c9299c1ffe84ebf2 Talk