zoukankan      html  css  js  c++  java
  • Best pactices in developing ASP.NET applications

    在 codeproject上面看到的文章,转一下


    Best pactices in developing ASP.NET applications...

    1. Remove unused private fields and functions.
    2. Do not cast unnecessarily. Avoid duplicate casts where possible, since there is a cost associated with them.
    3. Properties that return arrays are prone to code inefficiencies. Consider using a collection or making this a method.
    4. To test for empty strings, check if String.Length is equal to zero. Constructs such as "".Equals(someString) andString.Empty.Equals(someString) are less efficient than testing the string length. Replace these with checks forsomeString.Length == 0.
    5. Methods in the same type that differ only by return type can be difficult for developers and tools to properly recognize. When extending a type, be sure not to define new methods that differ from base type methods only by type.
    6. Use stringbuilder instead of string types for string manipulation. 
    7. Use String.Format instead of concatenating and appending strings.
    8. Use Type.TryParse rather than Convert.ToDestinationType(). For example, use int.TryParse() rather thanConvert.ToInt32() which might throw an exception.
    9. Override Equals() method wherever applicable in your classes.
    10. Consider passing base types as parameters - Using base types as parameters to methods improves re-use of these methods if you only use methods & properties from the parameter's base class. E.g. use Stream instead of FileStream as a parameter when only calling Stream.Read(), this makes the method work on all kind of streams instead of just File streams.
    11. Do not catch general exception types - You should not catch Exception or SystemException. Catching generic exception types can hide run-time problems from the library user, and can complicate debugging. You should catch only those exceptions that you can handle gracefully.
    12. Use properties instead of visible instance fields.
    13. Follow the same naming conventions accross the solution. 
    14. Remove unwanted commented code, indent code properly.
    15. Use curly braces with in an if statement, even if there is a single statement in the if block. This will provide better readability.
    16. Make sure to refactor your code to move the duplicated code to common reusable functions.
    17. Move one time control settings into the .aspx page rather than having them in the code behind in if(!IsPostback) block.
    18. Use inheritance wherever possible, which enables code reuse and also reduces the amount of code we have to write and test.
    19. Move the reusable JavaScript functions to an external .js file instead of having them on the page.
    20. For controls that are declarativley specified on the page, tie the event handlers to the controls events on the aspx page rather than initializing them in the codebehind. If the controls are built dynamically, then we do not have a choice.
    21. Make sure to check for nulls when using any type retrieved from a session, querystring or a database to avoidNullReferenceExceptions.
    22. Use foreach loop instead of using for loop which may lead to out of boundary run time exceptions.

  • 相关阅读:
    大型web系统数据缓存设计-l转载
    HDFS 原理、架构与特性介绍--转载
    golang函数——可以为类型(包括内置数据类型)定义函数,类似类方法,同时支持多返回值
    Hadoop之父Doug Cutting:Lucene到Hadoop的开源之路
    ES mapping可以修改include_in_all,也可以修改index_options,norm,但是无法修改_all属性!
    换npm yarn的源让install超时去死吧
    nodejs Yarn替代npm的包管理——快速、安全、可靠性高的依赖管理
    Faas 典型场景——应用负载有显著的波峰波谷,典型用例-基于事件的数据处理
    docker run Influxdb
    在Docker Hub上你可以很轻松下载到大量已经容器化的应用镜像,即拉即用——daocloud国内镜像加速
  • 原文地址:https://www.cnblogs.com/s1ihome/p/1938514.html
Copyright © 2011-2022 走看看