Class Ref<T>
Assembly: Glitch9.dll
Syntax
public sealed class Ref<T>
Type Parameters
Constructors
|
Edit this page
View Source
Ref(T)
Declaration
Parameters
| Type |
Name |
Description |
| T |
initial |
|
Properties
|
Edit this page
View Source
Value
Declaration
public T Value { get; set; }
Property Value
Events
|
Edit this page
View Source
OnValueChanged
Declaration
public event Action<T> OnValueChanged
Event Type
Operators
|
Edit this page
View Source
implicit operator T(Ref<T>)
Declaration
public static implicit operator T(Ref<T> reference)
Parameters
| Type |
Name |
Description |
| Ref<T> |
reference |
|
Returns
|
Edit this page
View Source
implicit operator Ref<T>(T)
Declaration
public static implicit operator Ref<T>(T value)
Parameters
| Type |
Name |
Description |
| T |
value |
|
Returns
Extension Methods