What is difference between Prop and Attribute in C#?
Ask by Hemant Patel
Updated 19 Sep 2020
There is lots of difference between them. A property lets you get/set data in your class. And an attribute is much different, “an attribute is additional declarative information that is specified for a declaration.”
Example of Property in C#:
Example of Attribute in C#: