Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnthonyDGreen/55749611d140f1264a0e5e8cabb6c29f to your computer and use it in GitHub Desktop.
Save AnthonyDGreen/55749611d140f1264a0e5e8cabb6c29f to your computer and use it in GitHub Desktop.
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