6 |
namespace RomCheater.Docking.MemorySearch |
namespace RomCheater.Docking.MemorySearch |
7 |
{ |
{ |
8 |
[Serializable()] |
[Serializable()] |
9 |
public class ResultType<T> |
public class ResultType<T> : IDisposable |
10 |
{ |
{ |
11 |
|
|
12 |
public ResultType() |
public ResultType() |
23 |
private T _Value; |
private T _Value; |
24 |
public uint Address { get { return _Address; } set { _Address = value; } } |
public uint Address { get { return _Address; } set { _Address = value; } } |
25 |
public T Value { get { return _Value; } set { _Value = value; } } |
public T Value { get { return _Value; } set { _Value = value; } } |
26 |
|
|
27 |
|
#region IDisposable Members |
28 |
|
protected virtual void Dispose(bool disposing) |
29 |
|
{ |
30 |
|
if (disposing) |
31 |
|
{ |
32 |
|
// dispose managed resources |
33 |
|
} |
34 |
|
// free native resources |
35 |
|
} |
36 |
|
public void Dispose() |
37 |
|
{ |
38 |
|
Dispose(true); |
39 |
|
GC.SuppressFinalize(this); // do not finalize because we don't have any unmanaged resources. |
40 |
|
} |
41 |
|
|
42 |
|
#endregion |
43 |
} |
} |
44 |
} |
} |