コード例 #1
0
 /// <summary>
 /// Registered with the event against method
 /// </summary>
 /// <param name="method">Method name</param>
 public void UnRegister(UpdateInfoEventHandler method)
 {
     UpdateInfo -= method;
 }
コード例 #2
0
 /// <summary>
 /// Registered with the event a unique method
 /// </summary>
 /// <param name="method">Method name</param>
 public void RegisterOnly(UpdateInfoEventHandler method)
 {
     UpdateInfo = method;
 }