Configure Visual Studio to Name Private Fields with Underscore
Last updated: 13 October 2023 Most C# coding standards recommend using camelCase for local variables and _camelCase for private or internal (and I also say for protected, but that’s just me) fields. Unfortunately, …