Tagged Questions
5
votes
7answers
716 views
Real world use of custom .NET attributes
What kind of things have you used custom .NET attributes for in the real world?
I've read several articles about them, but I have never used custom attributes.
I feel like I might be overlooking ...
3
votes
1answer
25 views
How can I read the attributes assigned to the properties of a class?
Given the following class
Public Class Customer
Inherits XPBaseObject
Private _CustomerID As Integer = -1
<Key(True), _
Custom("AllowNull", "True"), _
Custom("AutoInc", ...
3
votes
2answers
178 views
Can I mark a class as not my code so the debugger steps over it?
I have a utility class that has been thoroughly tested, and I do not want the VS debugger to step into any of its methods. I think I have heard of a way to mark something as not my code so that the ...