Islam Nofl

Results 8 issues of Islam Nofl

as [Uint8Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/Uint8Array#syntax) empty constructor are `ES2017` ![image](https://user-images.githubusercontent.com/5868825/182173489-73c18ed0-2bd0-4a22-978e-40a1ede9ea4e.png) it could be good to replace that with `new Uint8Array(0)` to support `target < ES2017` i think its just a small update here...

how i add Font ``` // create the object on the native side and wrap it in a C# class ImFontConfig* nativeConfig = ImGuiNative.ImFontConfig_ImFontConfig(); var config = new ImFontConfigPtr(nativeConfig) {...

When i have one enum(maybe more than one too) on the whole file that will case a bad filed type name. After checking src i think the bug would be...

bug

```cpp argparse::ArgumentParser::MutuallyExclusiveGroup& syntaxGroup = genParser.add_mutually_exclusive_group(true); syntaxGroup.add_argument("--host") .help("Generate host syntax for target language.") .default_value(false) .implicit_value(true); syntaxGroup.add_argument("--guest") .help("Generate guest syntax for target language.") .default_value(false) .implicit_value(true); // Cpp argparse::ArgumentParser cppCommand("cpp"); cppCommand.add_description("Generate C++ language...

```cpp argparse::ArgumentParser program("test", "0.0.1"); argparse::ArgumentParser genParser("gen", "0.0.1", argparse::default_arguments::none); genParser.add_argument("-c", "--config") .help("Configration file path.") .metavar("CONFIG") .required(); // Cpp argparse::ArgumentParser cppCommand("cpp"); cppCommand.add_description("Generate C++ language SDK."); cppCommand.add_parents(genParser); cppCommand.add_argument("--namespace") .help("Set the C++ namespace for...

In `StreamingWebSocketClient.CloseDisposeAndClearRequestsAsync` ```csharp CancellationTokenSource tokenSource = null; try { if (_clientWebSocket != null && (_clientWebSocket.State == WebSocketState.Open || _clientWebSocket.State == WebSocketState.Connecting)) { tokenSource = new CancellationTokenSource(ConnectionTimeout); await _clientWebSocket.CloseOutputAsync(WebSocketCloseStatus.NormalClosure, "", tokenSource.Token).ConfigureAwait(false);...