Hi People,
Im trying to create a PersonChanged EventHandler..
i have this:
public class Pessoa
{
private int _idade;
private bool _isDeleted;
public Pessoa()
{
// TODO: Complete member initialization
}
//Propriedades da Classe Pessoa (Nome, Profissão e Idade)
public string id { get; set; }
public string nome { get; set; }
public int idade { get { return _idade; } set { _idade = value; } }
public string profissao { get; set; }
public string signo { get; set; }
public string morada { get; set; }
public string telemovel { get; set; }
public string email { get; set; }
public bool IsDeleted
{
get { return _isDeleted; }
set { if (_isDeleted != value) { _isDeleted = value; PessoaChanged(); } } }
public event EventHandler PessoaChanged;
}
}
and hi have a error: Delegate EventHandler does not take 0 arguments..
Can you help?
Thanks.