示例#1
0
 protected virtual void OnGone()
 {
     Gone?.Invoke(this, EventArgs.Empty);
 }
示例#2
0
 public void OnGone()
 {
     Console.WriteLine($"{Name} leaves");
     Gone?.Invoke(this);
 }
示例#3
0
 private void OnGone()
 {
     Gone?.Invoke(this, EventArgs.Empty);
 }