c# - Is there an equivalent of AppDomain.AssemblyResolve in windows store apps? -
c# - Is there an equivalent of AppDomain.AssemblyResolve in windows store apps? -
i want attach appdomain.assemblyresolve event in "windows store" app. appdomain doesn't exist.
is there alternative way same functionality?
the concept of dlls laying around in unpredictable places iffy one. sure, assemblyresolve can deal accidents happen time. , without uncertainty 1 of worst kind, dll hell usability nightmare gives victim no decent shot @ getting problem fixed.
winrt designed eliminate such kind of chronic windows usability problems @ core. windows store app must packaged, of executable files app needs must shipped in single downloadable file store. never makes sense seek find dll @ runtime, part of bundle , found in predictable location. accordingly, assemblyresolve event removed reference assembly, no longer serves purpose.
c# .net windows-store-apps appdomain .net-assembly
Comments
Post a Comment