Skip to content

Instantly share code, notes, and snippets.

@arturaz
Created September 1, 2016 09:00
Show Gist options
  • Save arturaz/c23d67b504553fd98c57b8c95a55fb37 to your computer and use it in GitHub Desktop.
Save arturaz/c23d67b504553fd98c57b8c95a55fb37 to your computer and use it in GitHub Desktop.
// Don't do this.
namespace foo.Bar {}
namespace foo {
// Duplicate definition of Bar
public class Bar { }
}
// Do this
namespace foo.bar { }
namespace foo {
public class Bar { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment