Created
September 1, 2016 09:00
-
-
Save arturaz/c23d67b504553fd98c57b8c95a55fb37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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