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