I am going to be working on a bit of C# code on my own but I want to make sure that I follow the most widely accepted naming conventions in case I want to bring on other dev
Following Microsoft's naming conventions, private fields should be prefixed with an underscore.
For example:
private int _myValue;
Good luck!