blez
blez

Reputation: 5037

How can I load assembly dynamically thru internet?

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

Upvotes: 0

Views: 929

Answers (3)

Anton Tykhyy
Anton Tykhyy

Reputation: 20076

Assembly.Load (byte[])

Upvotes: 1

Nix
Nix

Reputation: 58522

Did you try..

C# LoadFrom

Upvotes: 0

kenny
kenny

Reputation: 22344

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.

Upvotes: 0

Related Questions