Please prefix the issue title with either "C# -> VB: " or "VB -> C#: " if relevant
Input code
Dim wordArray As String() = csvString.Split(CChar(","))
Erroneous output
var wordArray = csvString.Split(Conversions.ToChar(","));
Conversions.ToChar() wasn't recognised in C# - it appears that the correct method is Convert.ToChar()
Expected output
var wordArray = csvString.Split(Convert.ToChar(","));
Details
Please prefix the issue title with either "C# -> VB: " or "VB -> C#: " if relevant
Input code
Erroneous output
Conversions.ToChar() wasn't recognised in C# - it appears that the correct method is Convert.ToChar()
Expected output
Details
© 2015-2019 - Code Converter by https://github.com/icsharpcode/CodeConverter/ - Version 7.1.0.0