CommonEngineRemoveDuplicateRecordsT Method |
This method allow to remove the duplicated records from an array.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic static T[] RemoveDuplicateRecords<T>(
T[] arr
)
where T : Object, IComparable<T>
Public Shared Function RemoveDuplicateRecords(Of T As {Object, IComparable(Of T)}) (
arr As T()
) As T()
Parameters
- arr
- Type: T
The array with the records to be checked.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:FileHelpers.CommonEngine.RemoveDuplicateRecords``1(``0[])"]
Return Value
Type:
TAn array with the result of remove the duplicate records from the source array.
See Also