rskar-git
rskar-git
Per https://github.com/dotnet/reactive: "The Reactive Extensions (Rx) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators. Using Rx, developers represent asynchronous data streams with...
> Is there anything that can be done to reverse MS's decision... Probably not. General-purpose programming languages aren't the big money maker they used to be (and haven't been for...
@paul1956 > We should concentrate on getting 1 dedicated VB reviewer with "check-in" privilege's and not forking the Repo... Yep, that would be nice. Of course, that would take some...
Outsystems seems to have their own visual coding scheme which gets compiled (actually transpiled) utilizing C# and SQL (plus whatever else). I've never used their platform. They do allow you...
@cristianlt23 > Python has returned to being a cutting-edge language thanks to its community... Yes, that's mostly true. However, Python was very deliberately transformed from a proprietary product into a...
@VBAndCs I think that `Class MyFlag` concept misses the point of what "enum flags" are about. For starters, MyFlag should be a value-type (i.e. `Structure MyFlag`) and not a reference-type....
> I am covering my bases. This is an auto generated, for a general purpose use, so, someone can decide for some reason to use the Flag as an Integer...
> This makes no sense! > Why can't vb use the extension Object.IsSomething...? `Object` in VB has an ambiguity to it: (1) It is either the lowest-common-type of .NET; or...
@RevensofT The moment you begin to make use of pointers is the moment you bring a world of hellish trouble. They are a necessary evil for very specific situations, but...
Note that the `With` statement, even in VBA/VB6, essentiallly sets up a situation equivalent to a C# `ref struct`. I think we should extend this capability, so how about: `With...