CodeConverter icon indicating copy to clipboard operation
CodeConverter copied to clipboard

Convert code from C# to VB.NET and vice versa using Roslyn

Results 118 CodeConverter issues
Sort by recently updated
recently updated
newest added

### Input code ```csharp /// /// My variable /// My Exception occures on ``` ### Erroneous output ```vbnet ''' ''' My variable ''' My Exception occures on ``` ### Expected...

C# -> VB

Everything is okay nearly, i fixed all errors like : in "program.vb" change main private function to public method everything is okay if i dont click to form designer's member...

C# -> VB

### Input code ```vbnet Friend Const DlM As Char = "^"c Friend Function LeftSideOf(ByVal strDlM As String = DlM) As String ... End Function ``` ### Erroneous output ```C# internal...

compilation error
VB -> C#

### Input ```C# namespace ICSharpCode.CodeConverter.CSharp { public partial class VisualBasicConverter { class NodesVisitor : VBasic.VisualBasicSyntaxVisitor { IEnumerable ConvertMembers(SyntaxList members) { IEnumerable ConvertMembersInner() { foreach (var member in members) { yield...

help wanted
C# -> VB

### Input code ```C# using System; namespace ICSharpCode.CodeConverter.Util { static partial class ObjectExtensions { public static TResult TypeSwitch(this TBaseType obj, Func matchFunc1, Func defaultFunc = null) where TDerivedType1 : TBaseType...

help wanted
C# -> VB

Using 6.8.0 First a difficult one -- LINQ. Converting a string compare to ``` String.Compare(a,b,true) == 0 ``` is rejected by LINQ and is wrong since the case sensitivity of...

output logic error
UX feedback
VB -> C#

### Input code ```csharp public SyntaxTokenList ConvertModifiers(SyntaxNode node, IEnumerable modifiers, TokenContext context = TokenContext.Global, bool isVariableOrConst = false, params CSSyntaxKind[] extraCsModifierKinds) { } ``` ### Erroneous output ```vbnet Public Function...

help wanted
C# -> VB

**Is your feature request related to a problem? Please describe.** Having no obvious way to cancel is frustrating if you click the wrong project Workaround: Convert another small file to...

enhancement

Wouldn't it be possible to make this optional? It's annoying when I only want to copy some lines of code from VB.NET and I need to paste it elsewhere (in...

enhancement

### VB.Net input code NA ### Erroneous output NA ### Expected output NA ### Details I've install code converter extension and command line to my system. Also installed VS2022. Code...

enhancement
VB -> C#