命名空间之间的区别

命名空间之间的区别

本文介绍了命名空间之间的区别{using System;与使用系统;命名空间{}的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以告诉我实际影响方面的区别:

命名空间MyNamespace {

使用系统;


class MyClass {...}

}


vs.


使用系统;

名称空间MyNamespace {


class MyClass {...}

}


是?有一个框架建议,前者被使用(和一些

ASP.Net模板创建这样的类),但我使用后者。我已经试过了两次b $ b但是却无法确定两者之间的差异,所以我很不知道为什么有一个建议在另一个上做一个。

Can someone tell me the difference in terms of actual implications using:
namespace MyNamespace {
using System;

class MyClass {...}
}

vs.

using System;
namespace MyNamespace {

class MyClass {...}
}

are? There''s a framework recommendation that the former be used (and some
ASP.Net templates create classes like this), but I use the latter. I''ve
tried both but could never determine a difference between the two, so I''m
unsure why there''s a recommendation to do one over the other.

推荐答案








这篇关于命名空间之间的区别{using System;与使用系统;命名空间{}的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 15:07