This is the code I\'m trying to develop:
Public Structure Statistic(Of t) Dim maxStat As t Dim curStat As t Public Sub New(ByVal pValu
You could constrain T to IComparable. That way you know that curStat and maxStat both have a CompareTo method you can use to determine if one is greater than the other.