i have an exe that will use a dll..i made a reference to the dll that was made by me and is in the same folder as the exe...if i change later the dll to a update-version of it the exe will still work? or will i have to use reflection? lol
Printable View
i have an exe that will use a dll..i made a reference to the dll that was made by me and is in the same folder as the exe...if i change later the dll to a update-version of it the exe will still work? or will i have to use reflection? lol
It should still work considering all the methods that you used i the old dll uses the same signitures and return tpe, just replace the old one with the new one.
tks :) thats what i though