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

namespace System.Runtime.InteropServices {

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

}

#endif