Nate Bross
Contributor
Which of these methods do you use, and why?
or
Clearly the second approach leads to much greater level of indentation, which could be annoying on a small screen.
What advantages do you see to one over the other?
C#:
namespace some.longish.winded.name.space
{
class something
{
}
}
or
C#:
namespace some
{
namespace longish
{
namespace winded
{
namespace name
{
namespace space
{
class something
{
}
}
}
}
}
}
Clearly the second approach leads to much greater level of indentation, which could be annoying on a small screen.
What advantages do you see to one over the other?