C#での利点は何ですか
public class blah
{
public event EventHandler Blahevent;
}
対
public class blah
{
private event EventHandler blahevent;
public event EventHandler Blahevent
{
add
{
blahevent+=value;
}
remove
{
blahevent-=value
}
}
}
またはその逆。
最初のものはblahinstance.Blahevent=null、またはblahinstance.Blahevent(obj、even)にあなたを開きますか