/// <summary> /// Gets the next value, based off of the <see cref="IVariableValue{T}.Min"/> and <see cref="IVariableValue{T}.Max"/>. /// </summary> /// <returns>The next value, based off of the <see cref="IVariableValue{T}.Min"/> and <see cref="IVariableValue{T}.Max"/>.</returns> public ushort GetNext() { return((ushort)RandomHelper.NextInt(Min, Max)); }