Graham

Results 17 issues of Graham

I tackled similar issues for VB->C# in #540, #547, #550. Here are a few known bugs that occur in converting the standard winforms generated project. They're roughly ordered from easier...

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

### VB.Net input code ```vbnet Public Class FieldInitializationTest Private First As New Inner() Private Second As New Outer(First) End Class Public Class Inner End Class Public Class Outer Sub New(inner...

VB -> C#

### VB.Net input code ```vbnet Imports System.Drawing Public Class VisualBasicClass Public Sub M() Dim Shape = New Point() With { .X = 1, .Y = .X } End Sub End...

VB -> C#

https://devblogs.microsoft.com/nuget/add-a-readme-to-your-nuget-package/ https://github.com/icsharpcode/ILSpy/blob/master/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj#L14

enhancement

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

Spike relates to #172 Best solution available is probably to match the vbhtml structure against the generated vb document (which follows a simple pattern), then manually call to convert each...