I got ONLY 1 Namespace and these 2 different codes :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
namespace blabla
{
    [...]
}
and
namespace blabla
{
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Reflection;
    using System.IO;
    [...]
}
I don't see any difference at all here but it that really the case ? I mean about performance or whatever
 
     
     
    