C# Coding Standards and Guidelines: Coding Practices
1. Use meaningful namespace such as the product name or the company name.
2. Avoid fully qualified type names. Use the using statement instead.
3. Avoid putting a using statement inside a namespace.
4. Group all framework namespaces together and put custom or third-party namespaces underneath.




