Aydsman

2,180
Reputation
184 views

Registered User

Name Aydsman
Member for 1 year
Seen Nov 23 at 16:04
Website
Location Brisbane, Australia
Age 28
I'm a Microsoft .Net Developer and work in both the Windows and Web Application spaces. I really enjoy writing code, solving problems and helping people with technology.
Oct
29
comment Request vista UAC elevation if path is protected?
Thanks Matias. Fixed the post now.
Oct
29
revised Request vista UAC elevation if path is protected?
Spelling correction
Sep
30
comment Open a URL from Windows Forms
True, and that you should always consider. Their method of just swallowing exceptions makes me cringe though. You may be able to make arguments for it in this specific case but I'd still never have an empty "catch" block. It is too easy to entirely mask an issue that way.
Sep
9
comment How can I disable ViewState for dynamically created controls?
You need to take special steps to enable a control you are implementing to use ControlState. If the control which you are using has already been coded to use ControlState you don't have to do anything to enable it's use, it will just happen.
Aug
3
awarded  Yearling
Jun
9
accepted C#: Create custom warning in Visual Studio if certain method is used in source code
Jun
9
answered C#: Create custom warning in Visual Studio if certain method is used in source code
Jun
4
comment Is there a better way to count string format placeholders in a string in C#?
To correctly handle literal curly braces, change the regex to ignore them: @"(?<!\{)\{([0-9]+).*?\}(?!})" This way the (valid) "{4} aa {{0}} bb {0}, {0}" string also correctly matches ignoring the second zero.