You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
676 B
C#
30 lines
676 B
C#
7 months ago
|
using System;
|
||
|
using System.Drawing;
|
||
|
using System.Reflection;
|
||
|
using System.Resources;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace Mesnac.Docking
|
||
|
{
|
||
|
internal static class ResourceHelper
|
||
|
{
|
||
|
private static ResourceManager _resourceManager = null;
|
||
|
|
||
|
private static ResourceManager ResourceManager
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
if (_resourceManager == null)
|
||
|
_resourceManager = new ResourceManager("Mesnac.Docking.Strings", typeof(ResourceHelper).Assembly);
|
||
|
return _resourceManager;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
public static string GetString(string name)
|
||
|
{
|
||
|
return ResourceManager.GetString(name);
|
||
|
}
|
||
|
}
|
||
|
}
|