How can I create a list of constants so that if I change the constant in one place it will change everywhere it is referenced?
So I am referencing a number of dates (as strings) throughout my code, and I am worried that in the future if I change this string date in one place I may forget to change it in all the places. I would like to create some kind of constant, so that when I change it… Read More How can I create a list of constants so that if I change the constant in one place it will change everywhere it is referenced?