I am loading assemblies at runtime and calling methods on a particular class. I have a List (on hosting application) that I want to access from the runtime loaded assembly and the only way I can think of doing so is to pass the list in as a paramter, would that have a huge performance impact and is there perhaps any other option other than passing the List as a parameter?
Thanks
Q
Passing a List in means passing a reference – this has no performance impact.