1
2
3
4
5
6
7
8
9
10
11
12
13 using File360.Resources;
namespace File360
{
/// <summary>
/// Provides access to string resources.
/// </summary>
public class LocalizedStrings
{
private static AppResources _localizedResources = new AppResources();
public AppResources LocalizedResources { get { return _localizedResources; } }
}
}