rskar-git

Results 49 comments of rskar-git

@WalterLederer The `For Each l In expectedLines.WithIndex` example is a situation where index is a key field which relates items in actualLines with respective ones in expectedLines, and for something...

@WalterLederer If I was trying to grok code with something like `For Each foo In bar.WithIndex("Blah")`, I'd be more surprised to find out that "Blah" is meant as a tag...

@kingtu Could this be an issue about the debugger and the Watch window? I would suggest using the Quick Watch and the Immediate windows, and see what they display for...

There is nothing to be fixed. What you really want is a proper "Is Default" test - something that can tell us if a reference or value-type expression is just...

> How would you check is value of generic type is default in VB.Net ? ... For an unconstrained T, where you want the position of a null for references...

Nicer code: Function empty_index(Of T)(Host As T()) As Long Dim Length = Host.LongLength, Pos = 0 Do If Pos >= Length Then Return -1 If EqualityComparer(Of T).Default.Equals(Host(Pos), Nothing) Then '...

@WolvenRA, whatever big plan you may have in mind, may I offer some observations? (@tverweij and @paul1956, you may want to listen in, since you as well as @WolvenRA run...

@WolvenRA > What exactly happened in 2017 that caused the sudden stop? My guess is that the enterprise software market simply wants to capitalize on mobile app technologies, which for...

@salelele > The guys who wrote the original Mono VB Compiler showed that it can be done. Be careful about what you wish for: Another feature of a language that...

Putting constraints directly on a field or automatic variable probably wouldn't work out on the compiler side. The problem is in how to make sure the constraints get applied reliably,...