OutAttribute.cs 385 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Runtime.InteropServices.OutAttribute.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Runtime.InteropServices {
  10. public sealed class OutAttribute : Attribute {
  11. public OutAttribute ()
  12. {
  13. }
  14. public override object TypeId {
  15. get {
  16. // TODO: Implement me
  17. return null;
  18. }
  19. }
  20. }
  21. }