0
votes
Should you access a variable within the same class via a Property?
Generally depending on the project coding standards I use a "_" or "m" preceding the name for my private class attributes. (Like below)
private int mVariable;
private int _Variable; …
