public static string CheckTRange<T>(
List<T> ts,
T min,
T max,
bool throw = false
)
where T : struct, new(), IComparable<T>
Public Shared Function CheckTRange(Of T As {Structure, New, IComparable(Of T)}) (
ts As List(Of T),
min As T,
max As T,
Optional throw As Boolean = false
) As String
public:
generic<typename T>
where T : value class, gcnew(), IComparable<T>
static String^ CheckTRange(
List<T>^ ts,
T min,
T max,
bool throw = false
)
static member CheckTRange :
ts : List<'T> *
min : 'T *
max : 'T *
?throw : bool
(* Defaults:
let _throw = defaultArg throw false
*)
-> string when 'T : struct, new() and IComparable<'T>
[Missing <param name="min"/> documentation for "M:Karamba.Utilities.Utils.CheckTRange``1(System.Collections.Generic.List{``0},``0,``0,System.Boolean)"]
[Missing <param name="max"/> documentation for "M:Karamba.Utilities.Utils.CheckTRange``1(System.Collections.Generic.List{``0},``0,``0,System.Boolean)"]
[Missing <param name="throw"/> documentation for "M:Karamba.Utilities.Utils.CheckTRange``1(System.Collections.Generic.List{``0},``0,``0,System.Boolean)"]