Stories recently tagged with 'BestPractice'

Good Practice For Working With ASP.NET Controls(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 11 months ago

A good practice that I'm using when working with ASP.NET controls that saves me a lot of work. read more...

add a comment |category: |Views: 9

tags: another

MSDN Design Guidelines for Class Library Developers(msdn.microsoft.com)

submitted by .NetKicks.NetKicks(1304) 5 years, 3 months ago

Some guidelines for .NET Framework designs read more...

add a comment |category: |Views: 150

tags: another

CancelEventArgs - Pitfalls And Alternative(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 4 months ago

The all-useful CancelEventArgs, a common pitfall with using it and a safer alternative. read more...

add a comment |category: |Views: 23

tags: another

Remember To Unhook The Event Handlers(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 7 months ago

Article that describes how events are implemented and what happens if you forget to unhook the handlers. read more...

add a comment |category: |Views: 180

tags: another

throw; vs. throw ex; Here's the difference!(mattgollob.blogspot.com)

submitted by dalzieldalziel(6230) 5 years, 7 months ago

The difference is that throw; preserves the original stack trace and throw ex; truncates the stack trace below the method in which the throw ex; call is located. read more...

add a comment |category: |Views: 23

tags: another

Common Pattern For Working With DataReader(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 8 months ago

A description of a common pattern for working with DataReader object which as described here: http://vaultofthoughts.net/WhatYouShouldDisposeWhenUsingADONET.aspx Is IDisposable and should be disposed! read more...

add a comment |category: |Views: 78

tags: another

ASP.NET Best Practice Analyzer(odetocode.com)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

The alpha release of the ASP.NET Best Practice Analyzer was about 5 weeks ago. Similar to the popular SQL Server BPA, the ASP.NET BPA evaluates a set of best practice rules and tells you about configuration problems in your applications. The tool checks both machine level and application level config files. read more...

add a comment |category: |Views: 14

tags: another

Choosing the Right Type of Exception to Throw(blogs.msdn.com)

submitted by RobChappelRobChappel(2720) 5 years, 10 months ago

After you have decided when you need to throw exceptions, the next step is to pick the right type of exception to throw. This section provides those guidelines. read more...

add a comment |category: |Views: 22

tags: another

Why bother with exceptions?(mikeoff.blogspot.com)

submitted by mikeonmikeon(5200) 5 years, 11 months ago

A short article presenting few of my thoughts on validating input parameters and throwing exceptions. read more...

add a comment |category: |Views: 2

tags: another