-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValueType.cs
45 lines (42 loc) · 1.3 KB
/
ValueType.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
namespace GSSAPI.Utility
{
/// <summary>
/// Object wrapper for value types
/// </summary>
public static class ValueType
{
/// <summary>
/// Create wrapped object from <paramref name="value"/>
/// </summary>
/// <typeparam name="T">Any value type</typeparam>
/// <param name="value">Value to wrap</param>
/// <returns>Wrapped value</returns>
public static ValueType<T> From<T>(T value) where T : struct => new ValueType<T>(value);
}
/// <summary>
/// Object wrapper for value types
/// </summary>
/// <typeparam name="T">Any value type</typeparam>
public sealed class ValueType<T> where T : struct
{
/// <summary>
/// Original object value, can be used with <code>ref</code>
/// </summary>
public T Value;
/// <summary>
/// Create wrapped object from <paramref name="value"/>
/// </summary>
/// <param name="value">Value to wrap</param>
public ValueType(T value)
{
Value = value;
}
/// <summary>
/// Returns original value
/// </summary>
public static implicit operator T(ValueType<T> p)
{
return p.Value;
}
}
}