Events.Event.Invoke C# (CSharp) Method

Invoke() public method

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

Usage Example

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