Access local dll with SilverLight 4 out-of-browser
I read a little about the new features of Silverlight 开发者_开发知识库4 and it seems possible to 'access' microsoft office . Does this mean that we can reference local dll and COMs ?
Thanks
You don't reference dlls but you can activate COM objects that have been registered on the local machine. All you need to know is the CLSID or the ProgID of the COM object you want to create.
dynamic myObject = AutmationFactory.GetObject("MyLibrary.MyClass");
精彩评论