About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (208)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (168)
Most used tags
Tag Archives: .NET 4.0
Performance optimization with VS2012 profiler
Many systems are not optimized or sub-optimized by tweaking the wrong features. This post describes the use of the Visual Studio 2012 profiler to get insight in what to optimize and monitor the result of these optimizations. For this post … Continue reading
Posted in Development
Tagged .NET, .NET 4.0, deserialize, Performance, Profiler, stringreader, tweak, Visual Studio 2012, WCF
Leave a comment
Custom AutomationPeer classes
When you use custom controls in your silverlight application, you should implement custom AutomationPeer classes. These AutomationPeer classes will be used in your unittests. Below some different flavours I use in my project. Inherited, when you inherit from a control … Continue reading
Silverlight unittest / automation
Reading up on silverlight unittesting from Justin Angel’s post. I ran into some startup problems like not iheriting from SilverlightTest in my test class (took me two hours ;)) and adding the right assemblies to our project. But the biggest … Continue reading
Password confirm in WPF
In WPF the PasswordBox control doesn’t expose any property to bind it. You’ll need solutions as described here to get the password the ‘WPF way’. Getting it to validate is a different story. Whenever a user is created you want … Continue reading
Microsoft Developer Days 2011 in The Hague – day 2
Declarative refactoring C#Chris showed the ?? operator that is the ? operator that tests if a nullable type is null and provides a default. He also showed the Tuple.Create and the dynamic type to remove out parameters, Yield return can … Continue reading
Posted in Conference
Tagged .NET, .NET 4.0, Azure beta program, Conference, Devdays, Enity Framework, Loadtest, Microsoft, Productivity, Projecthosting, Test, Tooling, Visual Studio 2010, WCF, Windows Azure, WPF
1 Comment