Instead of hard-coding strings when referring to variables or properties, use nameof() to make your code safer and easier to maintain:
Console.WriteLine("Score"); // Bad
Console.WriteLine(nameof(Score)); // Good
If you rename the property, the compiler will catch it — no more silent runtime bugs.
Have you used nameof() in your projects yet?