Mohammad Hamdy Ghanem

Results 45 issues of Mohammad Hamdy Ghanem

In additions to #556 , these is some more `[]` operations: ``` Dim x = {1, 2, 3} Dim y = {2, 1, 0} Dim z = x[] + y[]...

I suggest this syntax to allow foreach loops to operate on more than one collection: ``` For Each (aItem := 0, bItem := 0) in (A, B) C.Add(aItem + bItem)...

I have these extensions: ```VB.NET Imports System.Runtime.CompilerServices Module Extensions Public Sub Print(ByVal aString As String) Console.WriteLine(aString) End Sub Public Function IsSomething(ByVal o As String) As Boolean Return o IsNot Nothing...

Based on #546, #547 I suggest to: 1. Mark methods of Microsoft.VisualBasic.Information module with the ExtensionAttribute. 2. Make the compiler look at this special module first to resolve extension methods...

I suggest to use this pattern as an alternative to local functions: ```VB.NET Class Class1 #Domain FuncGroup1 Dim x as Integer Dim y as Integer Out Sub Foo1() Dim z...

I have this code: ``` Protected Function GetAlwaysVisibleItems() As IEnumerable(Of CompletionItem) Return From elm As XmlSchemaElement In HtmlSchema.Elements.Values Select GetItem(elm.Name) End Function ``` And I get the error: > Option...

This is a feature I am waiting for for years, even before ASP.NET MVC added some validation attributes to the Model members, and I am wondering why this didn't happen...

I think you may be interested in this idea: [Target the Wep API instead of using .NET runtime on the client](https://github.com/mono/mono/issues/19650) This can minimize the download size to the client....

Hi @xieguigang Congratulations on this great effort. I am wondering if SciBasic can step up to be the VB.NET alternative. This is not necessarily be a huge thing, since VB.NET...

I downloaded this repo, and the last build of wasm sdk. When I run it, this code: ``` (JSObject)Runtime.GetGlobalObject("WebAssembly_Browser_DOM"); ``` in `WebAssembly.Browser\DOM\DOMObject` causes the exception: > System.TypeInitializationException: 'The type initializer...