Everywhere I see tutorials on how to compile assemblies using the System.CodeDom namespace.
But how can I access a member object of an assembly from a runtime compiled assembly (I'm not talking about accessing a class, I want to access a specific member variable)? In Microsoft Script Control it can be done with the AddObject method.
I guess if the assembly that is compiled at runtime behaves like every other ordinary assembly, then I should use .NET remoting? But isn't it an overkill? I wish there was an easier way.