| 123456789101112131415161718192021 |
- //
- // System.CodeDom FieldDirection Enum implementation
- //
- // Author:
- // Sean MacIsaac ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom {
- [Serializable]
- [ComVisible(true)]
- public enum FieldDirection {
- In,
- Out,
- Ref
- }
- }
|