To load web service in two different environment is need to change only service URL in web config in case of web site and in appsetting in case of window application. if you want to load dll of the fly (scenario based)go for reflection. code to load: System.Reflection.Assembly o = System.Reflection.Assembly.Load("mscorlib.dll"); System.Console.WriteLine(o.GetName());
R
RPA_AshishPandey
@RPA_AshishPandey