What are attributes
Answer / kirti
There are at least two types of .NET attribute. The first type I will refer to as a metadata attribute - it allows some data to be attached to a class or method. This data becomes part of the metadata for the class, and (like other class metadata) can be accessed via reflection.
The other type of attribute is a context attribute. Context attributes use a similar syntax to metadata attributes but they are fundamentally different. Context attributes provide an interception mechanism whereby instance activation and method calls can be
pre- and/or post-processed.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are attributes
How do I install .net framework?
Why to use Html.Partial in ASP.Net MVC?
Difference between Dispose and Finalize method
What are child actions in ASP.Net MVC?
what is code first approach?
How can you prevent your class to be inherated further
Explain how you can implement Ajax in MVC?
Can I add mvc testcases in visual studio express?
Explain how you can send the result back in JSON format in MVC?
What is the difference between viewbag and viewdata in mvc?
Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).