Is there any difference between these two using declarations ?
namespace myNamespace
{
    using System;
    using System.Collections.Generic;
    public class myClass
    {
    }
} 
AND
using System;
using System.Collections.Generic;
namespace myNamespace
{
   public class myClass
   {
   }
} 
 
    