Blub
Blub

Reputation: 13624

Does Mono have a hot swapping feature?

When I code in Java, I can use tools like JRebel to allow me to see changes immediately without restarting the server. (I'm embedding the JVM into a c application, so I don't want to constantly restart the c application for every Java source code change) Does Mono have something similar?

Upvotes: 1

Views: 161

Answers (1)

lupus
lupus

Reputation: 3963

You can do something similar by using application domains (load the new code in a new appdomain, unload the old one etc).

Upvotes: 3

Related Questions