/bc36606-range-variable-name-cannot-match-the-name-of-a-member-of-the-object-class.vb Secret
Created Feb 9, 2019
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