Sellorio
Sellorio
I would benefit from this too. Currently have to convert types and methods to string descriptions.
Actually it's not just the scenario on the title. I would have said that it's the square brackets causing the issue but ag-radio-group renders correctly. 
```csharp private async Task SaveAsync() { var directory = Path.GetDirectoryName(Filename); if (!Directory.Exists(directory)) { Directory.CreateDirectory(directory); } using var stream = new StreamWriter(Filename); using var csvWriter = new CsvWriter(stream, CultureInfo.InvariantCulture); await csvWriter.WriteRecordsAsync(_data);...
Now also experiencing lock ups during save.
And the data was lost despite failing to save.
This won't make a difference. Even before the new using syntax was implemented, having no braces would be equivalent to the following: ```csharp using (var stream = new StreamWriter(Filename)) {...
Your code is not similar to mine. Also this issue is for `GetRecordsAsync` not write.
Hi @lukesdm, I was able to reproduce it with the following code: ```cs public static void UseAcceptLanguage(this IApplicationBuilder applicationBuilder, Action configure) { var configuration = new LocalizationConfiguration(); configure(configuration); applicationBuilder.Use(async (context,...
Yeah its a bit of a mess hehe. Code could probably use some clean up :) That caused a `NullReferenceException` on this line: ```cs var _checkSupportedLanguages = (Func)(x => supportedLanguages.Any(y...