C Sharp (C#) - Properties and Encapsulation
Identify the issue in this property setter:
private int _score;
public int Score {
get { return _score; }
set {
if (value < 0) throw new ArgumentOutOfRangeException("Score cannot be negative");
_score = value;
_score = value;
}
}