I've spent the last year migrating a huge Windows WPF application to a modern React app. The battle continues.
Here I'll share the journey and some of the pain-points that I found and fixed along the way
Sharing my day-to-day experiences as a C# developer
I've spent the last year migrating a huge Windows WPF application to a modern React app. The battle continues.
Here I'll share the journey and some of the pain-points that I found and fixed along the way
Beginning with NUnit 2.6.2, test methods targetting .Net 4.5 may be marked as async and NUnit will wait for the method to complete before recording the result and moving on to the next test.Async test methods may return void or Task if no value is returned, or Task<T> if a value of type T is returned.
using System; using NUnit.Framework; namespace MyProject { [TestFixture] public class MyTestClass { [Test] public void Test() { } } }
System.Windows.Data Error: 40 : BindingExpression path error: 'MyUnknownProperty' property not found on 'object' ''Product' (HashCode=30581329)'. BindingExpression:Path=MyUnknownProperty; DataItem='Product' (HashCode=30581329); target element is 'TextBox' (Name=''); target property is 'Text' (type 'String')