Hot exchange code like Java in C #
Is there a way, in visual studio, I could enable code hot swap? In java, using at least eclipse, you can modify the code at runtime, save it, and modify it instantly in your application. I know there is an "edit and continue" function, but I am wondering if the same function was available for C #.
+3
source to share
2 answers
The question is unclear. Are you looking for "edit and continue" in C #? This has been around since VS2010 (albeit only when running in 32-bit mode). Or do you want to make your application swap code at runtime? This works the same, but requires hand-coding the plugin engine (or using a third party library).
0
source to share