Maybe it's quite easy but I cannot find a way to do this
[ExecuteAlways] // some third party attribute
public class A // and this class is also third party
{
}
// I don't want the ExecuteAlwasy attribute in B
// [!ExecuteAlways] < this is what I want
public class B : A
{
}
So how can I remove the attribute for only class B? Note that class A is not editable.