I'm doing a small internship at a business and in their code I find classes that are named like this:
public class FlagsConfig
{
private static FlagsConfig _instance;
}
Is the _instance
a naming convention of any sort in C#?
I would ask the developers but they are all out today and the next week on some course.
Maybe this can help you: .net Naming Conventions and Programming Standards - Best Practices
According to this document, it is ok.