File: src\libraries\System.Runtime.InteropServices\tests\Common\MarshalDirection.cs
Web Access
Project: src\src\libraries\System.Runtime.InteropServices\gen\Microsoft.Interop.SourceGeneration\Microsoft.Interop.SourceGeneration.csproj (Microsoft.Interop.SourceGeneration)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#if ANCILLARY_INTEROP
namespace System.Runtime.InteropServices.Marshalling
#else
namespace Microsoft.Interop
#endif
{
    public enum MarshalDirection
    {
        ManagedToUnmanaged = 0,
        UnmanagedToManaged = 1,
        Bidirectional = 2
    }
}