Can Events be declared as Static, if yes how and why

后端 未结 4 1884
时光说笑
时光说笑 2020-12-03 04:16

I want to know can we declare the events as static if yes why and application of such declaration.

Sample please as seeing is believing

4条回答
  •  隐瞒了意图╮
    2020-12-03 04:40

    public delegate void SomeEventDelegate();
    
    public class SomeClass
    {
            public static event SomeEventDelegate SomeEvent;
    }
    

提交回复
热议问题