Using Statements vs Namespace path? C#

前端 未结 6 414
耶瑟儿~
耶瑟儿~ 2020-11-30 11:19

I recently stopped using using-statements and instead use the full namespace path of any .net object that I call.

Example:

using System;    

namespa         


        
6条回答
  •  被撕碎了的回忆
    2020-11-30 11:45

    I think that this style result in a programmer performance decrease :). I use the using statement and usually it is clear from code to which namespace the class belong. If not, press F12.
    Just my 2c.

提交回复
热议问题