| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Reflection;
- namespace ILRuntime.Runtime.Generated
- {
- class CLRBindings
- {
- /// <summary>
- /// Initialize the CLR binding, please invoke this AFTER CLR Redirection registration
- /// </summary>
- public static void Initialize(ILRuntime.Runtime.Enviorment.AppDomain app)
- {
- ILRuntime.CLR.TypeSystem.CLRType __clrType = null;
- }
- /// <summary>
- /// Release the CLR binding, please invoke this BEFORE ILRuntime Appdomain destroy
- /// </summary>
- public static void Shutdown(ILRuntime.Runtime.Enviorment.AppDomain app)
- {
- }
- }
- }
|