I’m new at using Visual Studio. Each time I write a private variable in a script the first letters of the name I give to it is underlined because I use lowercase letters.
The proposed fixes are:
- make field readonly,
- encapsulate field: “” (and use property),
- encapsulate field: “” (but still use field),
- suppress IDE0044 either in Source or in Suppression File.
I hesitate between:
- ignoring the warning because it’s not code related (my default choice for now),
- making the field readonly,
- suppressing IDE044.
What should I do?