Jimmy Hoffa
Jimmy Hoffa

Reputation: 5967

Can you static link satellite assemblies?

I don't know enough about satelite assemblies to understand their construction, I'm curious if it's possible to statically link them all into a single dll and get the same functionality as if they weren't statically linked from:

ResourceManager.GetString("SomeStringIdentifier", CultureInfo.GetCulture(someCultureThatYouHaveResourcesFor));

Upvotes: 1

Views: 246

Answers (1)

Jimmy Hoffa
Jimmy Hoffa

Reputation: 5967

No, they would have type collisions in the resource space which is all that's in a satelite assembly.

Upvotes: 1

Related Questions