Krzysztof Wicher

Results 52 comments of Krzysztof Wicher

@pgrawehr Vector in .NET is more about SIMD instructions. I currently don't see any larger short term benefits of having Matrix in IoT repo but Vector3 is being used quite...

I'm suspecting this is this issue https://github.com/microsoft/vstest/issues/2224

@lateapexearlyspeed given there are some issues with the CI I'll manually squash and rebase it. I haven't seen those issues in the recent builds

(I force pushed again because git changed author to me so I changed you back as the author by hand)

I'll add couple of other tests I've seen locally, first 3 look like the "not found" value is actually in the string and in all 3 cases it's using current...

FWIW the AssertExtensions.Contains already exists and does exactly what I planned to add (which is doing Ordinal comparison by default). I'm currently running tests locally to see if StringComparison.CurrentCulture vs...

Ok, finally got lucky - random Assert.Contains failed where `actualString.IndexOf(expectedSubstring, StringComparison.CurrentCulture)` returned -1 but `actualString.IndexOf(expectedSubstring, StringComparison.Ordinal)` returned non-negative value. IMO some issues we're seeing are some kind of globalization issue...