/* Copyright (C) 2017-2020 Tal Aloni . All rights reserved. * * You can redistribute this program and/or modify it under the terms of * the GNU Lesser Public License as published by the Free Software Foundation, * either version 3 of the License, or (at your option) any later version. */ using System; using System.Collections.Generic; namespace Utilities { public class Reference where T : struct { T m_value; public Reference(T value) { m_value = value; } public T Value { get { return m_value; } set { m_value = value; } } public override string ToString() { return m_value.ToString(); } public static implicit operator T(Reference wrapper) { return wrapper.Value; } public static implicit operator Reference(T value) { return new Reference(value); } } }