using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Specifies which culture the assembly supports.
// Token: 0x02000049 RID: 73
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class AssemblyCultureAttribute : Attribute
{
/// Initializes a new instance of the class with the culture supported by the assembly being attributed.
/// The culture supported by the attributed assembly.
// Token: 0x0600066C RID: 1644 RVA: 0x00014B70 File Offset: 0x00012D70
public AssemblyCultureAttribute(string culture)
{
this.name = culture;
}
/// Gets the supported culture of the attributed assembly.
/// A string containing the name of the supported culture.
// Token: 0x170000B6 RID: 182
// (get) Token: 0x0600066D RID: 1645 RVA: 0x00014B80 File Offset: 0x00012D80
public string Culture
{
get
{
return this.name;
}
}
// Token: 0x0400009E RID: 158
private string name;
}
}