Robert Brenckman
Robert Brenckman
I was going to treat them as equivalent, as one is the `Path.AlternateDirectorySeperator`
I had also wanted to update the logic to not create new strings every time it checks for a flag, so I used string builder instead here to accomplish it....
The examples were useful, as I was iterating the code I used them to create some other unit tests. The tests failing at the moment will be fixed, just hadn't...
> `internal const string uncRegex = @"([\\\/]{2}[^*:?""|$\s]+?[$]?[\\\/][^*:?""|\s]+?) | (""[\\\/]{2}[^*:?""|$]+?[$]?[\\\/][^*:?""|]+?"")";` > > > > to > > > > ` internal const string uncRegex = @"([\\\/]{2}[^*:?""|$]+?[$]?[\\\/][^*:?""|\s]*) | (""[\\\/]{2}[^*:?""|$]+?[$]?[\\\/][^*:?""|]+?"")";` > Cursory glance,...
So while technically the regex can accommodate those invalid inputs and cleansing them would likely be pretty trivial, my goal was to only cleanse and handle standard and proper inputs....
Good feedback on the TryParse. The reason this was successful is because current iteration ignores if both source and destination were not found, and only errors if one is found...
I think it's mostly complete. But these changes were mostly thrown together, and I'm going to give them a polish/review of my own before I say go ahead. I've been...
I agree with your find, thanks for pinpointing it. Can you provide an example of the expected output for your region? This was changed due to this issue in an...
Can you post an example of summary lines for us to include in a unit test ? ``` Velocità: 257.555.063 Byte/sec. Velocità: 14737,419 MB/min. ``` I'm only asking because I...
Alright, just an update. While I've been working on the other PR, I've toyed with this as well. Once #207 is integrated, I have a slew of changes to implement...