-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VB -> C#: Missing conversion for array index assignment #365
Comments
Attempting to look into this one. When I get into |
If you see ErrorType or ErrorSymbol it generally means the compilation had errors. Imports System.Collections
Public Module Module1
Sub Main()
Dim x As New ArrayList
x.Add("a")
Dim xs(1) As String
xs(0) = x(0)
End Sub
End Module Other stuff:
|
Generally it's also worth just having a solution with a VB and a CS project open alongside the code converter for checking syntax. |
Input code
Erroneous output
Expected output
Details
Version in use: master @ 2483369
The text was updated successfully, but these errors were encountered: