鑑於此聲明:這兩個聲明有什麼區別?
using System;
using System.Collections;
using System.Collections.Generic;
namespace AProject.Helpers
{
public static class AClass
{
和本聲明
namespace AProject.Helpers
{
using System;
using System.Collections;
using System.Collections.Generic;
public static class AClass
{
在那裏它們之間任何的意義有什麼區別?或者只是編碼風格的差異?
我總是用來聲明我的類像第一個,但最近注意到微軟uses the second。
似乎是一個重複的問題。請參閱出色答卷 「[應Usings是命名空間內部或外部] [1]」 [1]:http://stackoverflow.com/questions/125319/should-usings-be-inside-或在名稱空間外 – tsemer 2012-08-03 06:53:12