EDW

Results 4 comments of EDW

Can also be done this way to reduce even more mem alocs: ```csharp static string GenerateSecureRandomString(int length) { Span random = stackalloc byte[length]; Span result = stackalloc char[length]; ReadOnlySpan dic...

Also, can add this snippet? @brunohbrito ```csharp // From C# in a Nutshell v9 - Joseph Albahari // Usage var span = "the quick brown fox".AsSpan(); foreach (var word in...

Sent the PR with the design and implementation.

```typescript import { Injectable } from '@angular/core'; import { Socket, SocketIoConfig } from './../../../node_modules/ngx-socket-io'; @Injectable({ providedIn: 'root', }) export class SocketService { config: SocketIoConfig = { url: 'http://192.168.43.142:9780', options: {},...