In C# .Net I'm looking to convert an ascii value (13, 16 etc) to its escaped view (eg \n, \r, \t etc) for a selector. Is there a built in way to do this or do I have to resort to using a look up table?
|
|
Not that I'm aware of... but it would be a very small lookup table anyway. It may be easiest to use a switch statement, in fact:
You could potentially also return |
|||
