Extension methods in referenced assemblies?
If I try to call my extension method which is defined like this: Module LinqExtensions <System.Runtime.CompilerServices.Extension()> _ Public Function ToSortableBindingList(Of TSource)(ByVal source As IEnumerable(Of TSource)) As IBindingList If (source Is Nothing) Then Throw New ArgumentNullException("source") End If Return New SortableBindingList(Of TSource)(New List(Of TSource)(source)) End Function End Module by calling Dim sss As String() sss.AsEnumerable.ToSortableBindingList() it gives an error "ToSortableBindingList is not a member of System.Collections.Generic.IEnumerable(Of String)".