-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDynamicResources.cs
56 lines (52 loc) · 1.93 KB
/
DynamicResources.cs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Globalization;
using System.Reflection;
using System.Reflection.Emit;
using System.Resources;
namespace IllidanS4.SharpUtils
{
/// <summary>
/// Various tools for dynamic types.
/// </summary>
public static class DynamicResources
{
static readonly ResourceManager manager = new ResourceManager("Microsoft.CSharp.RuntimeBinder.Errors", typeof(Microsoft.CSharp.RuntimeBinder.Binder).Assembly);
/// <summary>
/// Returns a resource string from the Microsoft.CSharp.RuntimeBinder.Errors resource.
/// </summary>
/// <param name="key">The key of the resource.</param>
/// <returns>The resource text.</returns>
public static string GetString(string key)
{
return manager.GetString(key);
}
/// <summary>
/// Returns a resource string from the Microsoft.CSharp.RuntimeBinder.Errors resource.
/// </summary>
/// <param name="key">The key of the resource.</param>
/// <param name="culture">The specific culture of the resource.</param>
/// <returns>The resource text.</returns>
public static string GetString(string key, CultureInfo culture)
{
return manager.GetString(key, culture);
}
/// <summary>
/// An assembly to create dynamic types in.
/// </summary>
public static readonly AssemblyBuilder DynamicAssembly = AppDomain.CurrentDomain.DefineDynamicAssembly(new AssemblyName("SharpUtilsDynamic"), AssemblyBuilderAccess.Run);
/// <summary>
/// A module to create dynamic types in.
/// </summary>
public static readonly ModuleBuilder DynamicModule = DynamicAssembly.DefineDynamicModule("SharpUtilsDynamic.dll");
private static int TypeId = 1;
/// <summary>
/// Defines a new anonymous dynamic type.
/// </summary>
/// <param name="attributes">The type attributes.</param>
/// <returns>The type builder.</returns>
public static TypeBuilder DefineDynamicType(TypeAttributes attributes)
{
return DynamicModule.DefineType("@DynamicType"+(TypeId++), attributes);
}
}
}