Events.Event.Invoke C# (CSharp) 메소드

Invoke() 공개 메소드

public Invoke ( ) : void
리턴 void
        public void Invoke() => _event.Invoke();
    }

Usage Example

예제 #1
0
 public void Invoke(T msg)
 {
     Event?.Invoke(msg);
 }
All Usage Examples Of Events.Event::Invoke
Event