using System;
using System.Runtime.InteropServices;
namespace System
{
/// Indicates that the COM threading model for an application is single-threaded apartment (STA).
/// 1
// Token: 0x020006A5 RID: 1701
[AttributeUsage(AttributeTargets.Method)]
[ComVisible(true)]
public sealed class STAThreadAttribute : Attribute
{
}
}