1
2
3
4
// just for the switch

Dictionary<char,int> dict = new Dictionary<char,int>(26);
...

C# On Code to Simplify

by nibbles&bits, December 20, 2007 21:13 Star_full

for the sake of readability...

326e4b379fafa37c9483d6f8e8eb9826 Talk
1
2
3
4
using System;

namespace FizzBuzz
...

C# I hate to do this, but...

by nibbles&bits, October 24, 2007 15:13, 12 refactorings

Let the battle begin!

326e4b379fafa37c9483d6f8e8eb9826 Talk
1
2
3
4
    static class SqlExec
    {
        public static void ExecCommandBatch(System.Data.Common.DbConnection conn, System.Data.IsolationLevel isolation, ExceptionFailSafeEventHandler<System.Exception> failSafe, params System.Data.Common.DbCommand[] cmds)
...

C# ExecuteCommandBatch

by nibbles&bits, October 21, 2007 02:34, 1 refactoring

It's rather large, but also...

326e4b379fafa37c9483d6f8e8eb9826 Talk