Reputation: 12437
I am new to .net and got a kind of weird migration work.
Due to circumstances i am going to change the functionality of 2 methods in a class and will build and create the dll. If i replace the old dll with new dll , will the application work and will it reflect new functionality in the server.
I am going to use same file name class name and methods .
What all things i have to consider on replacing the dll? and is it possible to just replace the dll ?
Upvotes: 1
Views: 108
Reputation: 161821
Briefly, and in general, yes, you can just replace the DLL. That assumes:
static
variables will be reset to their initial values, and depending on how you have Session state set up, your users may all lose their Session state. This may cause them to be logged out, depending on how you have implemented authentication.Upvotes: 1