CommonMidT Method
Returns the value that is neither the largest nor the smallest.
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.175 -- Release Build+70cfebd19f80455d07e1cf93607e59f6af0e38f4
public static T Mid<T>(
T value1,
T value2,
T value3
)
where T : Object, IComparable<T>
Public Shared Function Mid(Of T As {Object, IComparable(Of T)}) (
value1 As T,
value2 As T,
value3 As T
) As T
public:
generic<typename T>
where T : Object, IComparable<T>
static T Mid(
T value1,
T value2,
T value3
)
JavaScript does not support generic types or methods.
- value1 T
- Value 1.
- value2 T
- Value 2.
- value3 T
- Value 3.
- T
- Type of the objects passed to and returned from this method.
TResult is the value that is neither the largest nor the smallest.