using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RomCheater.Docking.MemorySearch { [Serializable()] public class ResultType { public ResultType() { this.Address = 0; this.Value = default(T); } public ResultType(uint Address, T Value) { this.Address = Address; this.Value = Value; } private uint _Address; private T _Value; public uint Address { get { return _Address; } set { _Address = value; } } public T Value { get { return _Value; } set { _Value = value; } } } }