コード例 #1
0
 public void DoSomething(string text)
 {
     if (_currentHandler != null)
     {
         _currentHandler.Invoke(text);
     }
 }
コード例 #2
0
ファイル: FakeEventRaiser.cs プロジェクト: noelitoa/Sandbox2
        public void DoSomething(string message)
        {
            FakeEventHandler tmp = currentHandler;

            if (tmp != null)
            {
                tmp.Invoke(message);
            }
        }
コード例 #3
0
        public void DoSomething(string text)
        {
            FakeEventHandler tmp = currentHandler;

            if (tmp != null)
            {
                tmp.Invoke(text);
            }
        }
コード例 #4
0
        public void DOSomething()
        {
            FakeEventHandler tmp = currentHandler;

            if (tmp != null)
            {
                tmp.Invoke("This is the reason");
            }
        }