Recent posts

WPF and its positioning versus Windows Form

3 minute read

User interfaces are a fundamentally important part of most applications. Making those interfaces as effective has possible can have measurable benefits to th...

Avoid threads deadlock

less than 1 minute read

On this month's issue of MSDN Magazine, Stephen Toub describe the class DdMonitor. DdMonitor implements almost all interfaces exposed by .NET System.Thr...

How to digitally sign a string

2 minute read

The first step is to create a pair of key(pulic/private): RSACryptoServiceProvider RSA = new RSACryptoServiceProvider();string publicKey = RSA.ToXmlString(fa...