show/hide this revision's text 2 added 4 characters in body
    public static string ExcelColumnName(int count)
    {
        return new string((char)('A'+(((count-1)%26))), ((count-1) / 26) + 1);
    }

Or if you would like to cache it for further lookups to make it faster :)

public class Test
{
    private Dictionary<int, string> m_Cache = new Dictionary<int, string>();

    public string ExcelColumnName(int count)
    {
        if (m_Cache.ContainsKey(count) == false)
        {
            m_Cache.Add(count, new string((char)('A' + (((count - 1) % 26))), ((count - 1) / 26) + 1));

        }

        return m_Cache[count];
    }

    public static void Main(string[] args)
    {
        Test t = new Test();

        Console.WriteLine(t.ExcelColumnName(1));
        Console.WriteLine(t.ExcelColumnName(26));
        Console.WriteLine(t.ExcelColumnName(27));
        Console.WriteLine(t.ExcelColumnName(1));
        Console.WriteLine(t.ExcelColumnName(26));
        Console.WriteLine(t.ExcelColumnName(27));

    }
    Post Undeleted by esac
    Post Deleted by esac
show/hide this revision's text 1