//------------------------------------------------------------------------------
//
//
// petes
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System.Runtime.InteropServices;
///
///
/// Specifies values used to indicate field and parameter directions.
///
///
[
ComVisible(true),
Serializable,
]
public enum FieldDirection {
///
///
/// Incoming field.
///
///
In,
///
///
/// Outgoing field.
///
///
Out,
///
///
/// Field by reference.
///
///
Ref,
}
}