DISQUS

amazedsaint's .net journal: http://amazedsaint.blogspot.com/2009/02/net-development-four-simple-golden.html

  • Stuart · 10 months ago
    Actually i searched for vb.net and asp.net e-book then suddenly i saw your blog i thought it has a more information about them.Its nice blog but i want something like e-books download links.good work
    new york web design
  • Anoop · 10 months ago
  • Stuart · 10 months ago
    Thanks Anoop for your responding but this is online books i need free download e-books link.anyways thanks for it..
    web design new york
  • Stuart · 10 months ago
    No one has a link for free download ebooks.
    web designing company
  • vinayakkamat · 7 months ago
    Wherever possible there's another way to do null checks, esp inside methods

    if(obj == null) return;
    obj.SomeMethod();

    This does two things,
    1. the line below that, will never be executed, so you are safe.
    2. The braces and indentation reduces drastically and the code that appears last in the method is very readable and maintainable.

    HTH