Reputation: 1495
Just wondering what the pros and cons between the two following two examples:
using MyLib;
namespace System.IO
{
public class IoService : IIoService
{
...
and
using System.IO;
using MyLib;
namespace MyLib.IO
{
public class IoService : IIoService
{
...
Upvotes: 0
Views: 97