Satellite Assembly Question

  • Thread starter Thread starter Pete Davis
  • Start date Start date
P

Pete Davis

Are there any good Open Source examples of globalized apps? I'd just like to
take a look at a real live sample that uses satellite assemblies.

I know how to do it from what the MS docs say, but I just want to see some
other examples first.

Besides code size is there any other downside to simply embedding all the
resources internally?

For example, I'm writing a small GUI app. It's easy enough to embed all the
resources for all the languages into the app.

Pete
 
For example, I'm writing a small GUI app. It's easy enough to embed all
the
resources for all the languages into the app.

Yes it is, but what if you want to support more languages in the future?
You will have to recompile the application and have all your users download
and install the latest version.
With satellite assemblies, you'll only have to deploy additional resource
assemblies to the users.

You can take a look at SharpDevelop. It's open source and chances are it
uses satellite DLLs.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top