Created
February 9, 2019 21:53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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