FieldDirection.cs 300 B

123456789101112131415161718192021
  1. //
  2. // System.CodeDom FieldDirection Enum implementation
  3. //
  4. // Author:
  5. // Sean MacIsaac ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc.
  8. //
  9. using System.Runtime.InteropServices;
  10. namespace System.CodeDom {
  11. [Serializable]
  12. [ComVisible(true)]
  13. public enum FieldDirection {
  14. In,
  15. Out,
  16. Ref
  17. }
  18. }