System.ComponentModel.ReadOnlyAttribute
namespace System.ComponentModel
{
public sealed class ReadOnlyAttribute : Attribute
{
public static readonly ReadOnlyAttribute Default;
public static readonly ReadOnlyAttribute No;
public static readonly ReadOnlyAttribute Yes;
public bool IsReadOnly { get; }
public ReadOnlyAttribute(bool isReadOnly);
}
}