- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFileSystem.cs
More file actions
Latest commit
60 lines (52 loc) · 1.39 KB
/
Copy pathFileSystem.cs
File metadata and controls
60 lines (52 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceStructuralPatterns.Composite
{
interfaceIFileSystemComponent
{
voidPrintName(stringprefix);
}
// Leaf
classFile:IFileSystemComponent
{
publicstringName{get;set;}
publicFile(stringname)
{
this.Name=name;
}
publicvoidPrintName(stringprefix="")
{
Console.WriteLine("{0} {1}",prefix,Name);
}
}
// Composite
classFolder:IFileSystemComponent
{
privatereadonlyList<IFileSystemComponent>_fsComponents;
publicstringName{get;set;}
publicFolder(stringname)
{
this.Name=name;
this._fsComponents=newList<IFileSystemComponent>();
}
publicvoidAdd(IFileSystemComponentcomponent)
{
this._fsComponents.Add(component);
}
publicvoidRemove(IFileSystemComponentcomponent)
{
this._fsComponents.Remove(component);
}
publicvoidPrintName(stringprefix="")
{
Console.WriteLine("{0} {1}",prefix,Name);
foreach(varfileSystemComponentin_fsComponents)
{
fileSystemComponent.PrintName(prefix+"\t");
}
}
}
}