• Gains from a Team Tech Discussion Forum


    Gains:
    0. Dependency Management. By good dependency (dependency brings in coupling) management (interface-oriented, depend on abstraction, dependency injection, IOC, design pattern), we can restrict the dependency between two modules / classes the least.
    1. Testability. Test code is about how your client uses your class. If it's easy to write (cover as many cases as possible), the design of the class is good.
    2. Debugability. LINQ is not good support...
    3. Trace breakpoint can be further making use of.
    4. Tools
        --View C# class: object browser; /// comment can help generating a metadata xml document for a assembly; class view; there is way to collapse a class to see its intefrace only;
        --Find out why your solution keeps out of date: change a xml node in VS to enable further info output; debugview is a tool to better view debug info??
        
    5. Other
    -- everyone knows more on some aspect than others, while a sure thing is that: on some other aspects, you know less.

    -- Metadata:??? for persistence and for reflection??

    6. External / internal beauty of code

     -- External: comments, design, etc everything you can see by viewing the source code.

     -- Internal: performance, capacity, security, stability

       
  • 相关阅读:
    计算机网络体系结构
    牛客多校第一场 Random Point in Triangle
    CSS line-height应用
    CSS line-height与行内框
    CSS 特殊性、继承与层叠
    Javascript进阶(6)---JS函数
    Javascript进阶(5)---闭包
    Javascript进阶(4)---编写类
    Javascript进阶(4)---几种特殊情况分析
    Javascript进阶(3)---原型链1
  • 原文地址:https://www.cnblogs.com/taoxu0903/p/1817292.html
Copyright © 2020-2023  润新知