Skip to content

Instantly share code, notes, and snippets.

@AnthonyDGreen
Created February 9, 2019 19:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save AnthonyDGreen/70d70a31e27f2b8fc3f152bf8e1d3a8c to your computer and use it in GitHub Desktop.
Class Foo
'Function [Select](Of T)(selector As Func(Of String, T)) As Foo
' Return Me
'End Function
Function Where(predicate As Func(Of String, Boolean)) As Integer
Return 0
End Function
End Class
Module Program
Sub Main()
Dim c As New Foo
Dim q = From x In c Where True Select x
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment