What is the fastest c# function that takes and int and returns a string containing a letter or letters for use in an Excel function? For example, 1 returns \"A\", 26 return
You could pre-generate all the values into an array of strings. This would take very little memory and could be calculated on the first call.