I have done this before and since forgot, but would like to again in C#. I cannot, however, for the life of me remember what this practice is called so I'm having trouble even Googling it.
I'm thinking of a string that literally just means another piece of text. Like my string is KNOTS_PER_MILLIMETER, I want to be able to say that that is 0.00194384 and then simply type KNOTS_PER_MILLIMETER anywhere in my code instead of 0.00194384. This would also allow me to change that value if I have to.
Thanks!
Edit: Realized I'm essentially looking to implement #define in C#.