I'm creating a car class. Make and model are properties but both make and model appear to be reserved words in C#. What's the best practice for naming properties/methods when your preferred name is a reserved word?
My first instinct is to call the properties CarMake, CarModel (so a convention of ClassNamePropertyName). Is there some better convention or is this the best approach?
EDIT>> My mistake, make and model aren't actually reserved words. VS intelliesense and code coloring made it appear so to me at first glance. Though my question does stand for future reference.
Thanks!