CLRBindings.cs 693 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Reflection;
  4. namespace ILRuntime.Runtime.Generated
  5. {
  6. class CLRBindings
  7. {
  8. /// <summary>
  9. /// Initialize the CLR binding, please invoke this AFTER CLR Redirection registration
  10. /// </summary>
  11. public static void Initialize(ILRuntime.Runtime.Enviorment.AppDomain app)
  12. {
  13. ILRuntime.CLR.TypeSystem.CLRType __clrType = null;
  14. }
  15. /// <summary>
  16. /// Release the CLR binding, please invoke this BEFORE ILRuntime Appdomain destroy
  17. /// </summary>
  18. public static void Shutdown(ILRuntime.Runtime.Enviorment.AppDomain app)
  19. {
  20. }
  21. }
  22. }