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
private string baseName; private string prefixName; private string suffixName; public GameItem(string _baseName, string _prefixName, string _suffixName) { this.baseName = _baseName; this.prefixName = _prefixName; this.suffixName = _suffixName; }