Blog Posts

Recent posts

C# WPF - customizing start up fuction in WPF

less than 1 minute read

When you create a WPF application with visual studio, you will always find app.xaml and app.xaml.cs file. In app.xaml file, you can find the StartupUri attri...

C++11 - Inherited constructors

less than 1 minute read

Now C++11 allow that derived class can inherit the constructors of base class as the following. 1 2 3 4 5 6 7 8 9 10 11 class A { public: A(int a) {} ...

C# - Simple UDP listener in asynchronous way

less than 1 minute read

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 private Socket udpSock; private byte[] buffer; public void Starter(...

C# Performance measurement helper classes

less than 1 minute read

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 ...