John Moreno
John Moreno
### VB.Net input code ```vbnet Public Class VisualBasicClass Sub Main Console.WriteLine(Example) End Sub Public Readonly Property Example As Long Get Static StaticVar As Long = LongRunningFunction Return StaticVar -1 End...
### VB.Net input code ```vbnet Public Class VisualBasicClass Public Class C1 Public Property C2p As C2 Public Property A As Decimal End Class Public Class C2 Public Property P1 As...
I'm creating an extension method with 3 parameters, the last being a paramaray. When attempting to reorder the parameters using named parameters, the signature is unable to be matched. ```vb.net...
**Steps to Reproduce / Scenario:** 1. Go to https://github.com/MicrosoftDocs/live-share/releases 2. See latest change listed at the top of the page as: v1.0.1377 (December 11th, 2019) 3. Look at current version...
Would it be difficult to make this work so that the lines following the first line of a multi-line interpolated strings start at the same position as the first character...
The Null Conditional operator when used in conjunction with a boolean function should result in a nullable value and not require parentheses around it before checking GetValueOrDefault or HasValue ```...
Just ran into this today, apparently it's a long standing bug: https://github.com/dotnet/roslyn/issues/2780, although I disagree with the recommended behavior. IMO the correct fix is for the call to Conversions::ToDate(string) to...
### VB.Net input code ```vbnet Public Class VisualBasicClass Sub Test() Dim v1 = 1 Dim v2 = 2 Dim testStr= $"What's up with {v1} {v2}" Console.Writeline(testStr) End Sub End Class...
### VB.Net input code ```vb.net Public Class VisualBasicClass Partial Private Sub MyMethod(p As Integer) End Sub End Class ``` ### Erroneous output ```C# public partial class VisualBasicClass { private partial...
I am getting an exception after calling the AppplicationDependencyInjectionBuilder.Build, and I can't figure out what I have setup wrong. I trimmed the ConfigurationServices method down to nothing (just a return),...