using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// Provides a hint to the common language runtime (CLR) indicating how likely a dependency is to be loaded. This class is used in a dependent assembly to indicate what hint should be used when the parent does not specify the attribute. This class cannot be inherited.
// Token: 0x0200056D RID: 1389
[Token(Token = "0x200056D")]
[AttributeUsage(AttributeTargets.Assembly)]
[Serializable]
public sealed class DefaultDependencyAttribute : Attribute
{
/// Initializes a new instance of the class with the specified binding.
/// One of the values that indicates the default binding preference.
// Token: 0x06002C71 RID: 11377 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C71")]
[Address(RVA = "0x41F8E0", Offset = "0x41E8E0", VA = "0x18041F8E0")]
public DefaultDependencyAttribute(LoadHint loadHintArgument)
{
}
// Token: 0x04001955 RID: 6485
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001955")]
private LoadHint loadHint;
}
}