Say I have few STATIC Defined column codes around 5 and I wish to use them in several files not by using "" strings but by calling them for example :
I wish I would have a class in where my codes would be stored and whenever I call them they are called by their values for example:
public static class ColumnCodes {
EstimatedDelivery = "ED";
ActualDelivery = "AD";
}
and when I call them in any other class it would be:
public void x{
var a = ColumnCodes.EstimatedDelivery;
// so this would be compiled like var a = "ED";
}