Forum member

derfel

6 posts

Posts by derfel

  1. Exception window size

    Thanks mate. I have a strong suspicion it's Windows 10 as I believe it was fine in Win7/8. There are a tonne of drawing glitches as well with Windows 10 in VS2013., probably with Resharper.

  2. Exception window size

    I tried it across all 3 of my monitors and they look exactly the same. 1920x1080 68.84 DPI 1920x1200 94.34 DPI 2560x1440 108.79 DPI

  3. Exception window size

    Hi there, I've recently switched to NUnit on VS2013 as well as Windows 10 so I'm not quite sure if it is new to either, but the exception window size is either too small or should be made resizable as it currently requires an extra click to be able to see the bare minimal details. [img]https…

  4. NCrunch doesn't assign default values to nullable types

    [quote=Remco;3385]For anyone interested, 1.43 has just been released with a fix for the above problem.[/quote] I can confirm this has been fixed. Thanks Remco!

  5. NCrunch doesn't assign default values to nullable types

    Thanks for the swift response. Just to add a note, default values work with reference types. Therefore running the following method works as expected, with bar being assigned the default value "ncrunch" public void Foo (string bar = "ncrunch") { }

  6. NCrunch doesn't assign default values to nullable types

    I'm using NCrunch 1.42.0.12 with VS 2012. I've seen a strange issue where nullable types aren't assigned default values (for optional params in C#) public void HasValue(bool? yes = true) { if(!yes.HasValue) throw new Exception("yes is not true"); …