IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
Startup.cs
Go to the documentation of this file.
1using System;
2using System.Reflection;
3
4using IKVM.Runtime;
5
7{
8
12 static class Startup
13 {
14
15 public static void addBootClassPathAssembly(Assembly asm)
16 {
17#if FIRST_PASS
18 throw new NotImplementedException();
19#else
20 JVM.Context.ClassLoaderFactory.GetBootstrapClassLoader().AddDelegate(JVM.Context.AssemblyClassLoaderFactory.FromAssembly(asm));
21#endif
22 }
23
24 }
25
26}
IKVM.Reflection.Assembly Assembly
Implements the backing support for global::ikvm.runtime.Startup.
Definition Startup.cs:13
static void addBootClassPathAssembly(Assembly asm)
Definition Startup.cs:15
Main state of the running JVM.
RuntimeAssemblyClassLoader FromAssembly(Assembly assembly)
Obtains the RuntimeAssemblyClassLoader for the given Assembly. This method should not be used with dy...
RuntimeAssemblyClassLoaderFactory AssemblyClassLoaderFactory
Gets the RuntimeAssemblyClassLoaderFactory associated with this instance of the runtime.
RuntimeClassLoaderFactory ClassLoaderFactory
Gets the RuntimeClassLoaderFactory associated with this instance of the runtime.