// // System.Runtime.InteropServices.OutAttribute.cs // // Author: // Miguel de Icaza (miguel@ximian.com) // // (C) Ximian, Inc. http://www.ximian.com // namespace System.Runtime.InteropServices { public sealed class OutAttribute : Attribute { public OutAttribute () { } public override object TypeId { get { // TODO: Implement me return null; } } } }