is "function Pointer" in c++ similar in behavior with "delegate" in c#? -
i have small question.
is function pointer
in c++ similar in behavior delegate
in c# ?
yes, they're similar.
but function pointer in c++ cannot point instance method of class, while delegate in c# can.
Comments
Post a Comment