DelegateExportAttribute.cs 300 B

123456789
  1. namespace ILRuntime.Other
  2. {
  3. /// <summary>
  4. /// A Delegate Custom Attr, It tells the CodeGenerationTools : this delegate need to register a delegate convertor,when generate ILRuntimeHelper.cs file.
  5. /// </summary>
  6. public class DelegateExportAttribute : System.Attribute
  7. {
  8. }
  9. }