Mohammad Hamdy Ghanem
Mohammad Hamdy Ghanem
When decompiling WPF, please take care of code-behind files: - [x] you can get the class name from the class attr in the xml file> - [x] Name the code...
the AssemblyInfo info in the decompiled app contains these attrs: ``` [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [Assembly: CompilationRelaxations(8)] [Assembly: RuntimeCompatibility(WrapNonExceptionThrows:=True)] ``` Which cause troubles when debugging the app as if the app is...
VB can't call the implicit ctype operator on dynamic objects. This code gives the runtime error: Can't convert from Test To String: ```vb Option Strict Off Option Explicit On Module...
I think there is no need at all to add an init-only setter to VB (nor C# in fact!). The readonly property can do the two jobs it perfectly, as...
Suppose we have an array named arr, and want to select items > 3: ```VB.NET dim result = arr.Select(function(x) x > 3) ``` I want to rewrite it like this:...
This repo seems frozen, and we gave up posting here because there is no response from the team anymore. But, some of us are still active on gitter: https://gitter.im/VB-NET/community and...
I suggest to allow to composing the select case expr as a pattern using `?` like this: ```VB.NET Dim X = "a test" Select case X.StartsWith(?) Case "a", "b" Case...
I don't like C# ranges, and I will never use them. Their roles are confusing, and I see no benefit of having a new syntax for such a trivial thing!...
Today, I wrote this in a [VB.NET ASP.NET Core app](https://github.com/VBAndCs/Vazor/tree/master/WebApp1): ``` services.AddControllersWithViews(). ' Enable Vazor AddRazorRuntimeCompilation( Sub(options) options.FileProviders.Add( New Vazor.VazorViewProvider()) ) ``` but I got syntax error, because the comment...
Dealing with Small Basic, I became a fan of using `[]` for indexing collections (`a[0]`), and I want this to be optional in VB.NET besides `()` (`a(0)`). This will allow...