Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Module Program
Sub Main()
Dim numbers = {1, 2, 3}
' BC36606: Range variable name cannot match the name of a member of the 'Object' class.
Dim q = From n In numbers
Select n.ToString()
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment