Can anybody brif me how the side by side execution works.
Let me put a scenario infront of you guys
I have deployed a dll with a function with the following signature
void show(string msg)
Today my requirement is to change the function void show(string msg, int notimes). But at the same time I dont want to disturb the exesting implemention when a new clint code reqest for this function it should get for that client. I mean both the dll's with the same name should exist and depending on the function call it should call appropriate functions.
Greatly appriciate if anybody can help to implement this scenario, just tell me how would I go about doing that no need to give any code.
thanks in advance