Can I override existing anottation in .NET?

1

I have the following annotation:

[XmlElement(IsNullable = true)]

I would like to see the code that has behind it, so I create my own based on it

Or if you have how to override it

    
asked by anonymous 12.03.2014 / 14:57

2 answers

2

ReSharper can decompile the attribute code (just like anything else), so you could see the code for it.

You can also view the online code .

    
12.03.2014 / 23:36
1

With a plugin called .NET Reflector you can access the annotation code and see how it works.

.NET Reflector

    
12.03.2014 / 15:29