| 12345678910111213141516171819202122232425 |
- //
- // System.Runtime.InteropServices.OutAttribute.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (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;
- }
- }
- }
- }
|