I was learning about NUnit and found we use class decorators like [TestMethod]
before every test function.
Then i learnt about decorators at this link. According to this answer
When You add decorator in C# it is like adding a property to the class/method. There will be an attribute attached to it.
I just want to ask if I want to use property to be used in whole class (not talking about one method) then why don't I choose inheritance over class decorator
What is the difference ...