vote up 4 vote down star
2

Hi,

Is there an ability in VB.NET to deprecate code? I know that in C# there are 'attributes', and tags in java; is there anything similar in VB.NET, other than leaving a 'todo:...?

flag

2 Answers

vote up 12 vote down check

There are attributes in VB.NET too:

http://www.vb-helper.com/howto_net_obsolete_attribute.html

Looks like this (before your function)

< Obsolete("This method is deprecated, use XXXX instead.") > _
link|flag
Fantastic, thanks. – brass-kazoo Mar 16 at 0:40
vote up 2 vote down

Use the [Obsolete] Attribute.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.