Click here to Skip to main content
15,891,248 members
Articles / Web Development / ASP.NET

Best practices in developing ASP.NET applications

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
3 Feb 2011CPOL 9.2K   5  
Initializing is great... unless you have no control over the contents.Consider this:String strTmp = String.Empty;strTmp = SomeRandomMethod();//Suppose SomeRandomMethod returns null under some circumstances...Now anything you try to do with strTmp (other than compare to null) will...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions