これら 2 つの using 宣言に違いはありますか?
namespace myNamespace
{
using System;
using System.Collections.Generic;
public class myClass
{
}
}
と
using System;
using System.Collections.Generic;
namespace myNamespace
{
public class myClass
{
}
}