Blog Posts

Recent posts

C++11 - default member initialization

less than 1 minute read

You can initialize the member variable as shown the following in C++11. It will save a lot of typing when you have many constructors. 1 2 3 4 5 6 7 8 9 10 11...

C# - MVVM light

less than 1 minute read

I think that MVVM light is the essential tool for XAML based framework such as WPF, Silverlight, Windows 8, WindowPhone 8 http://www.galasoft.ch/mvvm/doc/

C++11 - std::rethrow_if_nested

less than 1 minute read

std::throw_with_nested will create a class inherited from std::std::nested_exception and user exception then it will get current exception and user exception...