Welcome to mirror list, hosted at ThFree Co, Russian Federation.

InAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b141d9dbc4915e2fc090f478f01b736b751ed017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Runtime.InteropServices.InAttribute.cs
//
// Author:
//   Paolo Molaro (lupus@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//
using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Parameter)]
	public sealed class InAttribute : Attribute {
		public InAttribute () {
		}
	}
}