Files
Aaru/DiscImageChef.Gui/ResourceHandler.cs

10 lines
265 B
C#
Raw Normal View History

using System.IO;
using System.Reflection;
namespace DiscImageChef.Gui
{
static class ResourceHandler
{
internal static Stream GetResourceStream(string resourcePath) => Assembly.GetExecutingAssembly().GetManifestResourceStream(resourcePath);
}
}