Imports System.Collections.Generic
Interface IExcelCSVOperations
Function ReadFile(Of T)() As IEnumerable(Of T)
End Interface
The above program exposes a generic method
ReadFile of generic collection
IEnumerable from the interface
IExcelCSVOperations