using System;
using System.Collections.Generic;
using System.Text;
namespace Apewer
{
/// 实验性的。
[AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = true)]
public sealed class ExperimentalAttribute : Attribute
{
/// 从 到 Boolean 的隐式转换,判断 有效。
public static implicit operator bool(ExperimentalAttribute instance) => instance != null;
}
}