How will you load dynamic assembly? How will create assemblies at run time?
Select an image from your device to upload
to load the dynamically you have to use the reflection feature of dot net through the System.Reflection name space
whose assemble class has a method assembly.loadfrom(assembly name) that load the assembly.
or if you want to create a dynamic assembly in memory at runtime then you can use System.Reflection.Emit name space.
Surender Rawat
[email protected]