| 123456789101112131415161718 |
- //
- // System.Runtime.InteropServices.InAttribute.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Runtime.InteropServices {
- [AttributeUsage (AttributeTargets.Parameter)]
- public sealed class InAttribute : Attribute {
- public InAttribute () {
- }
- }
- }
|