Hi...
I know concpt of assembly in .net but I want to know what is satellite assembly and how to create satellite assembly ? Please explain ?
Thanks...
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nipun TomarPosted Jan 3, 2012, 12:42 AM
A .NET Framework assembly containing resources specific to a given language. Using satellite assemblies, you can place the resources for different languages in different assemblies, and the correct assembly is loaded into memory only if the user selects to view the application in that language. In general, assemblies should contain culture-neutral resources. If you want to localize your assembly (for example use different strings for different locales) you should use satellite assemblies.
Use the Assembly Linker (Al.exe) to compile .resources files into satellite assemblies. Al.exe creates an assembly from the .resources files that you specify. By definition, satellite assemblies can only contain resources. They cannot contain any executable code.
For more information plz read:
http://blogs.msdn.com/b/global_developer/archive/2011/07/22/introduction-to-satellite-assemblies.aspx
http://msdn.microsoft.com/en-us/library/21a15yht%28v=vs.71%29.aspx
Thanks
Vineet Kumar SainiPosted Jan 8, 2012, 11:29 PM
Mayur GujrathiPosted Jan 3, 2012, 1:47 AM
Sam HobbsPosted Jan 2, 2012, 5:24 AM
Satyapriya NayakPosted Jan 2, 2012, 12:26 AM
When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.
Please refer the below link
http://www.codeproject.com/KB/aspnet/SatelliteAssemblies.aspx
http://www.codeproject.com/KB/dotnet/satellite_assembly.aspx
Thanks
Vijay YadavPosted Jan 2, 2012, 12:24 AM
Please visit the link:
http://msdn.microsoft.com/en-us/library/21a15yht(v=vs.71).aspx