Ryan Price

Results 106 comments of Ryan Price

> VB Should be smarter than that. I even wonder if a class overloaded `= and >` why on earth it needs to overload `>=` unless of course it means...

@VBAndCs how many times are you going to write that? and how long does it take you? compared with how many classes you write, and how much time you spend...

Since we're talking about *Flags* Enums, which are conceptually arrays of Boolean values, can you explain the point of the following non-Boolean operators when dealing with a *Flags* Enum? As...

If I was marking an exam, this code would get a fail from me. > ```vbnet > Public Property IsReadOnly As Boolean > Get > Return Me.TexTBox.IsReadOnly > End Get...

> > [@pricerc](https://github.com/dotnet/vblang/issues/567#issuecomment-692332803) > > I think you didn't get the suggestion made and instead dwelled on the propriety of the code sample given. Not at all. I think I...

> I face this a lot, and I fall in an error due to differences between C# and VB You are not alone. But I think this is a bad...

Also, how is this different from #61 ?

> ```vbnet > dim result = arr.Select(function(x) x > 3) > . . . > dim result = Students.Select(function(x) x.Address.Street(0) = "a" OrElse x.Address.Street(0) = "a") > ``` Ummm. What...

> I think you can already enable/disable checked on an assembly level. I was preparing a long story for this. But I could see it would just be TL;DR. While...

While I have sympathy for the goal, I'm not convinced by the argument. Because I don't see how the use of `=` is ambiguous *in the context of VB*. I...