Mohammad Hamdy Ghanem
Mohammad Hamdy Ghanem
@pricerc @rskar-git I thing things are much simplier rhat that and the solution exists and is very cheap. I expect that the issue is that VB lowres the code to:...
`Select case True` is an illusion verbose version of `If ElseIf` and it defies the purpose of Select case as a shorter version of If.
I like this. I previously proposed to allow us to optionally add ByRef to ref arguments for better clarity of code. But, I don't think both proposals will happen as...
@xieguigang Amazing! I hope we can use this with [vbxml and ZML pages](https://github.com/VBAndCs/Vazor-DotNetCore2)
I did but missed this spot in the VB version :)
> A link to the C# one? https://github.com/dotnet/csharplang/issues/4119
@CyrusNajmabadi Thanks.
@xieguigang Thanks for your response. Forking VB.NET is a necessary step. but I am waiting to see what Anthony D. Green is working on to combine the efforts. Let's focus...
Can't it just be: `SomeType Foo(params values);` And C# treats it as: `SomeType Foo(params Span values);`?
We can combin syntax block and direct invocation, to define lanbda with arguments instead of params.. say: ``` int a=3, b= 5; var result = (x: a, y: b) =>...