IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
VfsDirectory.cs
Go to the documentation of this file.
1namespace IKVM.Runtime.Vfs
2{
3
7 internal abstract class VfsDirectory : VfsEntry
8 {
9
14 public VfsDirectory(VfsContext context) :
15 base(context)
16 {
17
18 }
19
25 public abstract VfsEntry GetEntry(string name);
26
31 public abstract string[] List();
32
33 }
34
35}