I saw someone using like
private bool someVariable { get; set; } = false;
though it doesn't hurt running the code it appears to me not a good practice and in my own understanding it's an overkill as this is a private variable but I want other's good opinion on this.
I said so because looks like using like this
private bool someVariable = false;
is more appropriate and proves no wrong and proper. Am I right?