How to declare delegates in C#

后端 未结 0 1174
醉酒成梦
醉酒成梦 2020-11-28 21:34

I have a function and delegate

void printFunction(int number){
     Console.WriteLine(number);
}

delegate void SomeDelegate(int num);

So, I

相关标签:
回答
  • 消灭零回复
提交回复
热议问题