I want to declare a hex decimal value as a constant character with in a static constants class as shown below:
public static class Constants
{
public char[] Record_Separator = new Char[] { '\x01E' }; //Record Separator
}
I know within a static class it's not possible to instantiate char as I wanted to retain all constants with in a single class so want to know if there is another way to do the same.
Upper_Camel_Case? I'm not sure I've encountered this before and I'm not sure I like it...