I am referring to the Flat enum MulticastAttributes.
[Flags]
public enum MulticastAttributes
{
Default = 0,
Private = 2,
Protected = 4,
Internal = 8,
InternalAndProtected = 16,
InternalOrProtected = 32,
Public = 64,
AnyVisibility = 64,
}
It looks like Public and AnyVisibility have same value - 64 assigned. Is this intentional? Would it cause all my methods in the applied filter to have an attribute added in IL ?