using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OPS.Obfuscator.Attribute { /// /// Do not use! Gets attached to not obfuscated members in developments builds. /// [AttributeUsage(AttributeTargets.All)] public class NotObfuscatedCauseAttribute : System.Attribute { #pragma warning disable public NotObfuscatedCauseAttribute(String _Cause) { } #pragma warning restore } }