Files
PowerToys/src/core/Microsoft.PowerToys.Settings.UI/Helpers/ResourceExtensions.cs

18 lines
425 B
C#
Raw Normal View History

2020-03-11 10:43:32 -07:00
using System;
using System.Runtime.InteropServices;
using Windows.ApplicationModel.Resources;
namespace Microsoft.PowerToys.Settings.UI.Helpers
{
internal static class ResourceExtensions
{
private static ResourceLoader _resLoader = new ResourceLoader();
public static string GetLocalized(this string resourceKey)
{
return _resLoader.GetString(resourceKey);
}
}
}