Quantcast
Channel: Answers for "How does SendMessage work in the background?"
Browsing all 6 articles
Browse latest View live

Answer by Brian Kehrer

I believe it internally uses some sort of delegate system - however, despite whatever optimizations it may or may not use, it is slow (relatively). If you are interested for optimization purposes, the...

View Article


Answer by Neodrop

I thing messages is based on "Invoke" method/ Not so fast as delegats.

View Article


Answer by jonas echterhoff

Send Message will indeed use reflection internally. So, it is by no means as fast as some custom solution using delegate tables. If you use this a lot, replacing it makes a lot of sense.

View Article

Answer by Brian-Kehrer

I believe it internally uses some sort of delegate system - however, despite whatever optimizations it may or may not use, it is slow (relatively). If you are interested for optimization purposes, the...

View Article

Answer by Neodrop

I thing messages is based on "Invoke" method/ Not so fast as delegats.

View Article


Answer by jonas-echterhoff

Send Message will indeed use reflection internally. So, it is by no means as fast as some custom solution using delegate tables. If you use this a lot, replacing it makes a lot of sense.

View Article
Browsing all 6 articles
Browse latest View live