RussellSmith2

Results 6 issues of RussellSmith2

### 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

### 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

### Input code ```csharp private static string GetBaseForNewName(ISymbol declaration) { string name = GetName(declaration); return declaration.Kind switch { SymbolKind.Method => name + "Method", SymbolKind.Property => name + "Prop", SymbolKind.NamedType =>...

C# -> VB

### Input code ```csharp class TestClass { double height; void TestMethod() { for(double y = 0d; y < height; y += 10d) Draw(y); for(double y = 0d; y < height;...

C# -> VB

### Input code ```csharp internal class NameGenerator { private readonly Func _getValidIdentifier; private NameGenerator(Func getValidIdentifier) => _getValidIdentifier = getValidIdentifier; } ``` ### Erroneous output ```vbnet Friend Class NameGenerator Private ReadOnly...

enhancement
C# -> VB