Fabio Iotti
Fabio Iotti
Asynchronous methods do not throw exceptions, you should await for a result instead. ```c# private void MainForm_Load(object sender, EventArgs e) { // ... try { webClient.DownloadFileAsync(new Uri("https://github.com/PeterTh/gedosato/archive/master.zip"), "update.zip"); } catch...
`DateTimeKind.Utc` dates become `DateTimeKind.Local` when parsed, time is parsed correctly. I guess the problem is around [here](https://github.com/mgholam/fastJSON/blob/9b9c6c7d4d72089ced4e50cf4e8fd9eb6ce0d543/fastJSON/JSON.cs#L762). The date should probably be constructed as either `Local` or `Utc` depending on...
`outputDir.getParent()` returns `null` when `outputDir` is a relative path with just the name of a folder (Example: `"aaa"`). Verified on **DisUnity v0.5.0**. Thank you for your efforts, your work is...
Line slurping seems to break line counter, error line index decreases by one for every slurped line in the code before the error. ##### With slurping ``` test.ejs:3 1| AAA...
When running on Windows, with the following configuration: ``` proxy.register("localhost", "http://example.com/"); ``` A request to: ``` http://localhost/test?path=part1/part2/part3 ``` Results in: ``` http://example.com/test?path=part1\part2\part3 ``` --- The problem lies in `path.join`, which...