C
CSharper
I have bunch of dll's I want to add attribute to it so that at run
time, I can find out which dll method to invoke. My current plan is to
write a custom attribute and give it to the developers to use to
decorate the methods they want me to invoke during runtime. Custom
attribute works good. But every new dll people write they need to know
about my custom attributes. Is there a predefined attribute i can use
like comments or something? All I want in the attribute for the
developers to put is just method name and its description. I am trying
to avoid custom attribute and if there is an existing one I can use, I
can document it and pass it to developers. Less coupling.
Thanks.
time, I can find out which dll method to invoke. My current plan is to
write a custom attribute and give it to the developers to use to
decorate the methods they want me to invoke during runtime. Custom
attribute works good. But every new dll people write they need to know
about my custom attributes. Is there a predefined attribute i can use
like comments or something? All I want in the attribute for the
developers to put is just method name and its description. I am trying
to avoid custom attribute and if there is an existing one I can use, I
can document it and pass it to developers. Less coupling.
Thanks.