are there function pointers in c#?

前端 未结 6 1261
后悔当初
后悔当初 2020-12-07 01:40

I am trying to learn some c# coding and wondering if the c++ concept of function pointers is included in c#. I see there are such things as delegates. Are they the same co

6条回答
  •  自闭症患者
    2020-12-07 02:15

    A delegate is similar to a function pointer in some ways, but actually it is closer to an interface with only one function combined with a way to register handlers and a multicast dispatching mechanism.

    So it's a lot more than a function pointer.

提交回复
热议问题