Paul M Cohen

Results 285 comments of Paul M Cohen

Thanks, it would be great if this was documented somewhere easier to find or even in the comments.

Both sets of information would be useful. Unless there is already a way to get the version information separately, I think both should be available. If OS Version is already...

VB Supports before a ByRef parameter, there was an open issue to not require that variable to be initialized to avoid Warning BC42030 it does not seem like it was...

@DualBrain I noticed you use ZIP to start. You need to fork Repo on GitHub, then clone in Visual Studio so you have a private copy, then Push to your...

One of the example is to use Code Generation instead of the designer to handle settings that is what you want.

Can @Parameswarigrahadurai provide a code sample that shows the issue. There is nothing anyone can do with this.

@Padanian That is only if you don't use Pack, with Core 5.0 the total app of Hello World size is 155KB on Windows.

@InteXX never mind it is smaller but not that small. The feature is PublishTrimmed

@WalterLederer I started using this and can replace and simplify many of my For loops. Is there any way to skip forward (similar to i += 1) in a for...

For Each with Index, skip, IsFirst and IsLast ``` Imports System.Runtime.CompilerServices Public Module ForEachExtensions Public Iterator Function WithIndex(Of T)( source As IEnumerable(Of T) ) As IEnumerable(Of IndexClass(Of T)) If source...