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
{
}
}
searchfield in the upper right corner of this webpage before posting a question. Chances are your question is already answered.