Now can I please get a comparison not just a definition.
Example:
SomeClassAttribute (or ISomeClassAttribute)
VS
SomeClassFilter (or ISomeClassFilter)
I have a feeling that they can be used the same way but generally speaking "an attribute is applied" and a "filter is the functionality they produce." So I could "add an attribute to a method (or class or whatever) to apply a filter.
Attributes are a feature of .NET, MVC Filters are implemented using that feature.
For example, System.Web.Mvc.HandleErrorAttribute derives from the BCL System.Attribute. Filters apply behaviour via hooks into the MVC pipeline (roughly speaking).