Saurabh Mishra
Saurabh Mishra

Reputation: 1

Delegates and Function pointers

Delegates in .Net and function pointers in C are they similar or Conceptually same? Pls help me understand; pls excuse me if this is a basic or trivial question. Any responses greatly appreciated.

Upvotes: 0

Views: 138

Answers (1)

phantom
phantom

Reputation: 1455

They are virtually the same thing. However, they are also type-safe, unlike function pointers. You can find an overview here.

Upvotes: 3

Related Questions