What?s a satellite assembly?



What?s a satellite assembly?..

Answer / swapna

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 ?    4 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What are the string functions in c#?

0 Answers  


Explain the different ways a method can be overloaded?

0 Answers  


Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.

1 Answers  


What is wcf c#?

0 Answers  


What is class method?

0 Answers  






What is hiding in CSharp ?

1 Answers  


When a Static Constructor is called in a Class?

0 Answers  


Is vs as c#?

0 Answers  


What is deadlock in c#?

0 Answers  


What is literal in c#?

0 Answers  


Can we inherit private class in c#?

0 Answers  


What does assert() do?

2 Answers  


Categories