CounterWrapper.CallCountEvent C# (CSharp) 메소드

CallCountEvent() 공개 메소드

public CallCountEvent ( int n ) : void
n int
리턴 void
    public void CallCountEvent(int n)
    {
        CountEventHandler tmp = CountEvent;
        if(tmp != null)
            tmp(n); // <=> tmp.Invoke(n);
    }