IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IModuleFinder.cs
Go to the documentation of this file.
1using System.Collections.Immutable;
2
4{
5
9 internal interface IModuleFinder
10 {
11
23 ModuleReference? Find(string name);
24
35 ImmutableHashSet<ModuleReference> FindAll();
36
37 }
38
39}