what is the attributs in vb .net for ?

Ncode

Member
Joined
Feb 22, 2003
Messages
15
is attributs are imortant for making programs ?
can someone give an useful exemple for this ?
 
To find out more about attributes in .NET, consult the documentation. There is lots of information there.
 
depends on what kind of attributes you are talking about
File attributes are one thing (hidden, archive, readonly)

Attributes can also be considered the properties of an object but normally should be called properties for clarifaction. In a textbook your author may just prefer attributes over properites

Attributes could be metadata for an object youll have to look that one up

Attributes can be used to display Categories and Descriptions for Properties in Custom User Controls and Components

hope that will clarify it a little
might have made it worse lol
 
You can also define your won new types of attributes by having a class that inherits from System.Attribute - we have custom attributes to track work done to allow billing the various departments for the work done.
 
Back
Top