本文介绍了为什么委托需要在C#中调用方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
c#有两种类型的成员 - 静态成员和实例成员
用于使用类的名称调用静态成员
用于使用类的实例调用实例成员
但为什么你需要c#中的代表来调用成员
请帮帮我。
谢谢你
什么我试过了:
用于使用类的名称调用静态成员
用于使用类的实例调用实例成员
但为什么你需要c#中的代理来调用成员
c# has two types of members--static and instance members
For invoking static members using name of the class
For invoking instance members using instance of the class
but why do u need delegates in c# for invoking members
please help me.
thank u
What I have tried:
For invoking static members using name of the class
For invoking instance members using instance of the class
but why do u need delegates in c# for invoking members
推荐答案
这篇关于为什么委托需要在C#中调用方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!