private void DispatcherTimerForPing_Tick(object sender, EventArgs eventArgs)
        {

...

C# On simplify the timer tick met...

by Sekhat, January 26, 2011 14:06 Star_fullStar_fullStar_fullStar_fullStar_full

I only took a stab at the f...

B20991026b45ee0d77e9bbb2b6776097 Talk
Dictionary<string, int> columnToMinimumRequiredWidthMapping = new Dictionary<string, int>()
        {
            { "col0", 0 },
...

C# On if / switch horror

by Sekhat, January 24, 2011 16:57 Star_fullStar_fullStar_fullStar_full

this should behave exactly ...

B20991026b45ee0d77e9bbb2b6776097 Talk
public class WeekValidator
    {
        public bool IsValidSevenDayWeek(IEnumerable<DayOfWeek> week)
...

C# On Validate a week

by Sekhat, January 24, 2011 16:25 Star_fullStar_fullStar_fullStar_full

Well that brings it down to...

B20991026b45ee0d77e9bbb2b6776097 Talk
public class WeekValidator
    {
        public bool IsValidSevenDayWeek(IEnumerable<DayOfWeek> week)
...

C# On Validate a week

by Sekhat, January 24, 2011 10:39

Modified to satisfy Ants ex...

B20991026b45ee0d77e9bbb2b6776097 Talk

C# On Validate a week

by Sekhat, January 24, 2011 10:24

You're quite right; it woul...

B20991026b45ee0d77e9bbb2b6776097 Talk
public class WeekValidator
    {
        public bool IsValidSevenDayWeek(IEnumerable<DayOfWeek> week)
...

C# On Validate a week

by Sekhat, January 21, 2011 10:44

I reimplemented your tests,...

B20991026b45ee0d77e9bbb2b6776097 Talk
public class BuilderTests
    {
        [Fact]
...

C# Refactor my tests

by Sekhat, January 21, 2011 10:15, 3 refactorings, tagged with tests, xunit.net

Hey, here a some tests of m...

B20991026b45ee0d77e9bbb2b6776097 Talk
namespace Marcidia.Net
{
    [MarcidiaComponent(
...

C# Best way to refactor this?

by Sekhat, September 21, 2010 10:02, 1 refactoring, tagged with C#

Is there a good way to refa...

B20991026b45ee0d77e9bbb2b6776097 Talk
namespace Marcidia.Net
{
    [MarcidiaComponent(
...

C# Best way to refactor this?

by Sekhat, September 21, 2010 10:01, No refactoring, tagged with C#

Is there a good way to refa...

B20991026b45ee0d77e9bbb2b6776097 Talk
namespace Marcidia.Net
{
    [MarcidiaComponent(
...

C# Best way to refactor this?

by Sekhat, September 21, 2010 09:57, No refactoring, tagged with C#

Is there a good way to refa...

B20991026b45ee0d77e9bbb2b6776097 Talk
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

C# On HTML Reprocessing Code

by Sekhat, February 26, 2009 14:19

Though I guess not, I just ...

B20991026b45ee0d77e9bbb2b6776097 Talk