-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClass5.cs
More file actions
38 lines (34 loc) · 818 Bytes
/
Class5.cs
File metadata and controls
38 lines (34 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Globalization;
using System.Reflection;
using System.Resources;
internal class ResourceManagerHandler
{
private static ResourceManager resourceManager;
private static CultureInfo cultureInfo;
internal static ResourceManager ResourceManager
{
get
{
if (resourceManager == null)
{
resourceManager = new ResourceManager("ExplotFixer.ExploitFixer.Properties.Resources", typeof(ResourceManagerHandler).Assembly);
}
return resourceManager;
}
}
internal static CultureInfo CultureInfo
{
get
{
return cultureInfo;
}
set
{
cultureInfo = value;
}
}
internal ResourceManagerHandler()
{
}
}