[]
Represents the method that compares two structs of the same type.
public delegate int StructComparison<T>(in T x, in T y) where T : struct
Public Delegate Function StructComparison(Of T As Structure)(x As T, y As T) As Integer
Type | Name | Description |
---|---|---|
T | x | The first struct to compare. |
T | y | The second struct to compare. |
Type | Description |
---|---|
int | A signed integer that indicates the relative values of |
Name | Description |
---|---|
T | The type of the structs to compare. |