Andrew Niese

Results 9 issues of Andrew Niese

### VB.Net input code ```vbnet Public Function IsHybridApp() As Boolean Return Application.Session("hybrid") IsNot Nothing AndAlso Application.Session("hybrid") = 1 End Function ``` ### Erroneous output ```C# public static bool IsHybridApp() {...

compilation error
VB -> C#

I believe I have the correct C# code at the end, although I am not 100% certain. In VB I was able to have the lambda function have a boolean,...

compilation error
VB -> C#

### Steps to reproduce 1. Have a VB app with XML Documentation checked in project settings, set to \bin\FixityVB.xml 2. Convert to C# 3. Change to release configuration 4. App...

compilation error
help wanted
good first issue
VB -> C#

Another case of a VB "object" needing to be converted to "dynamic". Not sure if there is a foolproof way to do this. ### VB.Net input code ```vbnet Public Function...

compilation error
VB -> C#

### VB.Net input code Select Case u.userlevel Case userlevel.City_Staff To userlevel.Fixity_ROOT Return True Exit Function End Select ### Erroneous output switch (u.userlevel) { case var @case when userlevel.City_Staff

compilation error
VB -> C#

Error thrown by compiler on erroreous code is "Delegate Action does not take 0 arguments" (CS1593) ### VB.Net input code ```vbnet Private Sub btnFilter_Click(sender As Object, e As EventArgs) Handles...

compilation error
VB -> C#

It seems WinForms on .NET 5 has no built-in support for dark mode theming. I can implement a custom darkmode theme switcher that sets BackColor and ForeColor on most controls...

api-suggestion
area-Theming

When you go into a .NET Core 3.1 WinForms project and check "Sign the assembly" on the Signing tab, and use a self-sign certificate, the AppBar does not work. It...

Hi, thanks for this sample. I'm trying to use it with Xamarin.Forms 5 on the latest Visual Studio 2019. In master/Radio021/Radio021/Views/Radio.xaml, I'm getting an error on Line 3, XLS0415, "The...