Click or drag to resize

CommonEngineRemoveDuplicateRecordsT Method

This method allow to remove the duplicated records from an array.

Namespace:  FileHelpers
Assembly:  FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntax
public static T[] RemoveDuplicateRecords<T>(
	T[] arr
)
where T : Object, IComparable<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: T
An array with the result of remove the duplicate records from the source array.
See Also