Newer
Older
DNA / corlib / System.Runtime.InteropServices / OutAttribute.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 230 bytes First commit
#if !LOCALTEST

using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
	public sealed class OutAttribute : Attribute {
		public OutAttribute() { }
	}

}

#endif