Patrick Meinecke

Results 430 comments of Patrick Meinecke

Just an FYI, the Engine WG discussed this today but we need more time now that we've fully dug into the meat of it, and will continue discussions in the...

Can you elaborate on what effect the introduction of `sudo` has? It seems unrelated to the original issue. > Nicely poke the Win32 people to add a new Verb for...

> @SeeminglyScience I don't know how sudo is related. However it was part of the reason for the initial decission for "Won't fix" in the original ticket. See [#15562 (comment)](https://github.com/PowerShell/PowerShell/issues/15562#issuecomment-903269556)...

@vexx32 Sorry for the confusion in terminology, when I refer to an array literal assignment I mean an `AssignmentStatementAst` where the left hand side is an `ArrayLiteralAst`.

Thanks @iSazonov, title has been updated. Also I should fully clarify what I mean by `Deconstruct`. C# 7 added support for assigning each item of a tuple to a different...

@Jaykul the feature request itself doesn't actually require extension method resolution, though it would make it a lot more consistent. That said, can you elaborate a bit more on the...

Yeah I suppose in the case of tuples specifically it could just look for `ITuple` which specifies `Length` and the indexer. That shouldn't be too bad

I can definitely understand the perspective but the risk is much higher. The vast majority of types will implement `IEnumerable` if it also supports those properties. If it doesn't, there...

> @SeeminglyScience The reason why I am hesitant to go with specific interface is that I can see no common interface for all types which I consider good candidates for...