POO C# : Test the value in a setter
Hello, I want to test the value of an attribute and to modify another attribute. Is it possible to do this? public class Informaticien { private string _fonction; private int _nombrePC; private string _testerNombrePc; public string Fonction { get { return _fonction; } set { _fonction = value; } } public int NombrePC { get { return _nombrePC; } set { if(value > 0) { _nombrePC = value; _testerNombrePc = "Valeur incorrecte"; } else { _testerNombrePc = "Valeur incorrecte"; } } }