summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Runtime/CompilerServices/LoadHint.cs
blob: 3820f8544b900a5e7084e2bf05c5dcd7697deb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Runtime.CompilerServices
{
    public enum LoadHint
    {
        Default = 0x0000,           // No preference specified
        Always = 0x0001,            // Dependency is always loaded
        Sometimes = 0x0002,         // Dependency is sometimes loaded
    }
}