CSharpToVB icon indicating copy to clipboard operation
CSharpToVB copied to clipboard

New version of CSharpToVB converter

Results 6 CSharpToVB issues
Sort by recently updated
recently updated
newest added

Try this: ```C# string[] x = new[] { "{\\rtf1\\ansi\\ansicpg\\lang1024\\noproof65001\\uc1 \\deff0{\\fonttbl{\\f0\\fnil\\fcharset0\\fprq1 Consolas;}}", "\\fs24 ", "\\cf0 {0}", "\\", "\\\\", "\\{", "\\}", "{\\b ", "\\cf{0} {1}{2}{3}{4}{5}", "\\cf0 {0}","\\}", "\\par ", "{\\colortbl;\r\n", "\\red{0}\\green{1}\\blue{2};" }...

Try to convert this project: [ToolFramework.zip](https://github.com/paul1956/CSharpToVB/files/8894808/ToolFramework.zip) The vb project will contain about 500 errors, most of them are due 2 reasons: 1. The property private filed , which has the...

Was working my way through some samples located at https://blog.ndepend.com/top-10-new-net-6-0-api/ The LINQ now works with Index and Range operators... // 6 element indexed from 0 to 5 var arr = ...

The converter has serious issues with custom events. For example, this code: ```C# private static event SmallBasicCallback _buttonClicked; /// /// Raises an event when any button control is clicked. ///...

This code ```C# int i = 0; //++ or -- onl i++; ++i; i--; --i; //++ or -- in instruction DoSomethingWithI(i++); DoSomethingWithI(++i); DoSomethingWithI(i--); DoSomethingWithI(--i); ``` is converted like this ```vb...

help wanted

### Input ```csharp public class ClashingNames { private string ab; void Test() { object aB = 5; int Ab = 7; } void Test2(int ab) { object aB = 5;...