OrderDIAttribute.cs 505 B

123456789101112131415161718
  1. using System;
  2. namespace com.bbbirder.injection
  3. {
  4. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, Inherited = false)]
  5. public class OrderDIAttribute : Attribute
  6. {
  7. internal int order;
  8. /// <summary>
  9. /// The default assign order of this type
  10. /// </summary>
  11. /// <param name="order"> pick from litter </param>
  12. public OrderDIAttribute(int order)
  13. {
  14. this.order = order;
  15. }
  16. }
  17. }