ConstantValueMethodAttribute.cs 384 B

123456789101112131415
  1. namespace ExpressionKit.Unwrap
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. /// <summary>
  8. /// Used to mark constant expressions within queries.
  9. /// This attribute provides no additional functionality.
  10. /// </summary>
  11. [AttributeUsage(AttributeTargets.Method)]
  12. internal class ConstantValueMethodAttribute : Attribute { }
  13. }