OutAttribute.cs 336 B

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