InAttribute.cs 340 B

123456789101112131415161718
  1. //
  2. // System.Runtime.InteropServices.InAttribute.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Runtime.InteropServices {
  11. [AttributeUsage (AttributeTargets.Parameter)]
  12. public sealed class InAttribute : Attribute {
  13. public InAttribute () {
  14. }
  15. }
  16. }