hackedteam/core-winphone

View on GitHub
DeviceInfo/MyPhoneInfo/LocalizedStrings.cs

Summary

Maintainability
A
0 mins
Test Coverage
using MyPhoneInfo.Resources;

namespace MyPhoneInfo
{
    /// <summary>
    /// Provides access to string resources.
    /// </summary>
    public class LocalizedStrings
    {
        private static AppResources _localizedResources = new AppResources();

        public AppResources LocalizedResources { get { return _localizedResources; } }
    }
}