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

OutAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 868bc61468b72342113a28d03327fe146f27d421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// System.Runtime.InteropServices.OutAttribute.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System.Runtime.InteropServices {

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

		public OutAttribute ()
		{
		}
		
		public override object TypeId {
			get {
				// TODO: Implement me
				return null;
			}
		}
	}
}