Mohammad Hamdy Ghanem

Results 245 comments of Mohammad Hamdy Ghanem

Yes, it is how C# creates ref structs under the hod, and this is reported 2.5 years ago in VB repo and Roslyn repo. VB is fully capable to create...

But, there is still a workaround (if they didn't kill it too): Anyone wants to consume ref Structs in VB: It just works via option infer on: `Dim x =...

Matches is a new keyword (a breaking change) in a wrong context. It refers to regular expressions and doesn't indicate types. Besides, this a bad usage of a new keyword....

I am against the C# type-b4-var style, period. It is not a VB style and must not be. We are not writing an essay here to think what should comes...

As I said about C#, this is a kind of contaminating the language! Yesterday, I brought up the C# complexity issue in csharp room on gitter, and I want to...

When any language wants to add a new feature, it must follow these rules: 1. Not to make the language harder to learn for beginners. 2. Not to make the...

It would be better if we can use TryCast instead of CType in my proposal: ``` If TryCast(Obj, s As String) AndAlso s.Lenght > 0 then End If ``` but...

I didn't master the source yet. It is huge. I am studying Small basic source code now, and will use it as a test lab. It is a very small...

There is a difference. There I was comparing types, but here I am comparing references. In my use case, I could use the types instead of references because I am...

@gilfusion We always have the normal full body to solve any unusual case. Alternative suggestion: Suppose we have this property: ```VB.NET Dim _account As Account Public Property Account As Account...