1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-19 13:02:14 +02:00

[CSharp/en]namespaces can have multiple levels with dots

This commit is contained in:
Laoujin
2015-01-31 20:21:52 +01:00
parent 928b8404aa
commit 937e6dad51

View File

@@ -35,7 +35,7 @@ using System.Threading.Tasks;
using System.IO; using System.IO;
// defines scope to organize code into "packages" // 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 // 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. // you're allowed to do otherwise, but shouldn't for sanity.