Silverlight 4 and C# DLL's
I am working on Silverlight 4. I have the dll's which were created with the C# windows application. Now i want the same to be converted to Silverlight. So can I add the same dll's in this silvelright application. Please give some suggestion so that i can continue my work.
SLDeveloperPosted May 18, 2012, 9:10 AM
Silverlight applications can only use assemblies compiled by Silverlight projects. There are exceptions but for anything UI related it's always true.
As a result, if you want to use a third-party library in your Silverlight application, it needs to have a special Silverlight version to use instead of the normal version. The "normal" version is sometimes called the .NET4 version or the WPF version to contrast it with the Silverlight version.
so my suggestion is to create one silverlight library project & use dll of this project.