What?s a satellite assembly?

Answers were Sorted based on User's Feedback



What?s a satellite assembly?..

Answer / jigar

I think, "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 elects to view the application
in that language."

This means that you develop your application in a default
language and add flexibility to react with change in the
locale. Say, for example, you developed your application in
an en-US locale. Now, your application has multilingual
support. When you deploy your code in, say, India, you want
to show labels, messages shown in the national language
which is other than English.

Is This Answer Correct ?    14 Yes 3 No

What?s a satellite assembly?..

Answer / guest

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.

Is This Answer Correct ?    12 Yes 4 No

Post New Answer

More C Sharp Interview Questions

How do I enforce const correctness in c#?

0 Answers  


What exactly happens when we debug and build the program?

0 Answers  


What is the difference between throw and throw ex?

0 Answers  


Can we inherit singleton class in c#?

0 Answers  


Explain the difference between a sub and a function in c#.

0 Answers  






What is difference between int and int32 in c#?

1 Answers  


What is the difference b/w Arry.copy() and array.clone() method?

6 Answers  


What is argument in c#?

0 Answers  


int i = 1; int j = 1; System.Console.WriteLine(i == j); System.Console.WriteLine(i.ToString() == j.ToString()); System.Console.WriteLine((object)i == (object)j); Give the sample code above, what is the output to the console?

5 Answers  


How to update the gui from another thread in c#?

0 Answers  


i want the csharp questions&answeres

0 Answers   IBM, Siemens,


What does private void mean in c#?

0 Answers  


Categories