Josh Close
Josh Close
That sounds good to me. When do you think this feature could be released? I have my immediate needs of getting markdown fixed, so I could give you a pull...
Ok. I'll make a pull request for my relative url stuff that I think could help you.
I'm looking for the Container Registry API.
I submitted a pull request for the Container Registry API. https://github.com/trmcnvn/DigitalOcean.API/pull/93
Can you give a small example that reproduces this?
Try putting brackets in for your `using` blocks. ```cs using var stream = new StreamWriter(Filename); using var csvWriter = new CsvWriter(stream, CultureInfo.InvariantCulture); { await csvWriter.WriteRecordsAsync(_data); } ```
I'm not able to reproduce the issue. Here is my test code. ```cs async Task Main() { var records = new List(); for (var i = 0; i < 1_000_000;...
Oops. You mentioned saving issues so I got that mixed up. This works for me. Can you update this so it fails? ```cs async Task Main() { var path =...
@Alik2015 `ToListAsync` is a part of `System.Linq` in assembly `System.Linq.Async`.
If someone can give me a unit test that produces the issue, I'll take a look at it. Right now I can't reproduce it.