diff options
author | Laoujin <woutervs@hotmail.com> | 2015-01-31 20:21:52 +0100 |
---|---|---|
committer | Laoujin <woutervs@hotmail.com> | 2015-01-31 20:21:52 +0100 |
commit | 937e6dad51446cf47c85156e4af0696efdcac43b (patch) | |
tree | 593560066e05733efb9e92cba78bf0c3b4fa968f /csharp.html.markdown | |
parent | 928b8404aa7d47dbc50351f48fdca7334bb32647 (diff) |
[CSharp/en]namespaces can have multiple levels with dots
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index ad43e607..4a238f25 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -35,7 +35,7 @@ using System.Threading.Tasks; using System.IO; // defines scope to organize code into "packages" -namespace Learning +namespace LearningXInYMinutes.CSharp { // Each .cs file should at least contain a class with the same name as the file // you're allowed to do otherwise, but shouldn't for sanity. |