Daniel Cazzulino's Blog
-
Create secure string easily in tests (i.e. for a password for Process.Start)
SecureString pwd = new SecureString(); foreach(char c in "Pass@word1") { pwd.AppendChar(c); } Process.Start("notepad", "Administrator", pwd, Environment.MachineName);
-
Virtual PC and the lack of Maximize button
Nowadays, it's unbelievable that an application has the Maximize button disabled. Even more if it's an application I use everyday and which most of the time NEEDS to be maximized.
-
NUnit 2.2 for .NET v2.0 RTM
I've modified the public MSI with the Orca tool so that it installs in any version of .NET (which runs fine and is supported anyways...). So go download it and enjoy doing TDD ;).
-
TabControl.Visible / Hide() not working, and won't be fixed **ever**?!?
Read this bug report please. Sometimes I'm amazed at the things they do in the name of "backwards compatibility"...
-
The pleasure of travelling 16 hours to Redmond with a 2 years old daughter
Note: this entry has moved.
-
GAT slides from Seattle CodeCamp
Note: this entry has moved.
-
MVP Summit: the most worthwhile conference ever
Note: this entry has moved.
-
Reflection severely broken for properties
Note: this entry has moved.
-
Google + eBay: that would be killer
Note: this entry has moved.
-
New C# conditional assignment operator ?? for null cases!! (no more ? .. : in C# 2.0)
Note: this entry has moved.