Where to place using System or other namespaces? Which is the correct or the better way to write code and why? According to my c# trainer it is the second, but everywhere I see the first one.
using System;
namespace Program
{
    class SomeClass
    {
    }
}
or
namespace Program
{
using System;
    class SomeClass
    {
    }
}
According to my c# trainer it is the second, but everywhere I see the first one.
 
     
     
     
    