Home »

Whate are Resource Files? How are they used in .NET?

Question ListCategory: .NETWhate are Resource Files? How are they used in .NET?
jamessmith05 author asked 8 years ago
1 Answers
milleranthony7 author answered 8 years ago

Resource files are the files containing data that is logically deployed with an application.These files can contain data in a number of formats including strings, images and persisted objects. It has the main advantage of If we store data in these files then we don’t need to compile these if the data get changed. In .NET we basically require them storing culture specific informations by localizing application’s resources. You can deploy your resources using satellite assemblies.

Please login or Register to Submit Answer