C# 3.5: Dynamically adding classes without recompiling
Posted
by Nir
on Stack Overflow
See other posts from Stack Overflow
or by Nir
Published on 2010-03-23T08:21:42Z
Indexed on
2010/03/23
8:23 UTC
Read the original article
Hit count: 201
I'd like to build an infrastructure that will monitor a server and check ping, response time, and more.
The catch is that future checks (for example: does a certain file exist) will be added without recompiling the infrastructure.
How do I build it in such a way that will enable me to attach inherited classes with different functionality, and execute them without recompiling?
Thanks!
© Stack Overflow or respective owner