I'm trying to understand a little about the relationship of server-side code to client side code in Silverlight.
I would anticipate that you can't simply 'eval' a string and have new code, but could you load an assembly on the server side and include it with the Silverlight code that is sent down to the client?
I'm a complete 'noob' when it comes to Silverlight so I may be completely misunderstanding how it works so any clarification would be appreciated.
[Edit]
Just so it makes a little more sense what I'm trying to do, I'd like to write some simple code (as in logic only), compile it on the server and then send it back down to the client so it can be used on the client side. I'm not sure if that would be a DLL or even possible...