| 12345678910111213141516171819 |
- //
- // System.Runtime.InteropServices.OutAttribute.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.InteropServices {
- [AttributeUsage (AttributeTargets.Parameter)]
- public sealed class OutAttribute : Attribute {
- public OutAttribute ()
- {
- }
- }
- }
|