I'm trying to familiarize myself with delegates and on http://msdn.microsoft.com/en-us/library/aa288459(v=vs.71).aspx, I'm reading:
"Unlike function pointers in C or C++, delegates are object-oriented, type-safe, and secure."
a mean, I do have C++ background, and somewhat cannot see how to understand the word "unlike" there. What do they mean by delegates are object-oriented and C++ fnc pointers are not? Same for type safe, and secure.
Anyone could show few examples and contra-examples?
Thanks.