CompilerLoweringPreserveAttribute
When applied to an attribute class, instructs the compiler to flow applications of that attribute,
from source code down to compiler-generated symbols. This can help IL-based analysis tools.
namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
internal sealed class CompilerLoweringPreserveAttribute : Attribute
{
}
}