views:

135

answers:

3

Is there a way or a library that can help me load assembly in memory (dll for example) located on my webpage. I'm trying to figure out a nice crack protection

A: 

One could download the file locally, then load it via AssemlblyLoad/reflection....and you would be off to the races. Not sure this is a good idea though.

kenny
Yes, but I want it in memory only.
blez
A: 

Did you try..

C# LoadFrom

Nix
I guess that can accomplished with downloading in memory and Assembly.Load(byte[])
blez
+1  A: 

Assembly.Load (byte[])

Anton Tykhyy