Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the features of Attribute

2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "what are the features of Attribute". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn what are the features of Attribute.

The copy code is as follows:

/ *

* Properti

, /

The copy code is as follows:

Using System

Using System.Collections.Generic

Using System.Linq

Using System.Web

/ / /

/ Summary description of DisAttribute

/ / /

Public class DisAttribute: Attribute

{

Private string _ message

/ / /

/ description

/ / /

Public string Message

{

Get {return _ message;}

}

Public DisAttribute (string message)

{

This._message = message

}

}

/ *

* Class

, /

The copy code is as follows:

Using System

Using System.Collections.Generic

Using System.EnterpriseServices

Using System.Linq

Using System.Web

Using System.Web.DynamicData

/ / /

/ Summary description of User

/ / /

[DisAttribute ("User"), TableName ("user"), Description ("user")]

Public class User

{

Private int? _ id

/ / /

/ Id

/ / /

[DisAttribute ("primary key")]

Public int? Id

{

Get {return _ id;}

Set {_ id = value;}

}

Private string _ name

/ / /

/ / name

/ / /

[DisAttribute ("name")]

Public string Name

{

Get {return _ name;}

Set {_ name = value;}

}

}

/ *

* get

, /

The copy code is as follows:

/ / get the property

User u = new User ()

Type _ t = u.GetType ()

Foreach (Attribute an in _ t.GetCustomAttributes (true))

{

If (a.GetType () .ToString () = = "DisAttribute")

{

DisAttribute _ da = (DisAttribute) a

If (_ da! = null)

{

Response.Write (_ da.Message + "

")

}

}

}

/ / get all attributes

U.Id = 888888

U.Name = "Eason Chan"

Foreach (PropertyInfo item in _ t.GetProperties ())

{

/ / Features

Attribute atr = item.GetCustomAttribute (typeof (DisAttribute))

If (atr.GetType () .ToString () = = "DisAttribute")

{

DisAttribute _ da = (DisAttribute) atr

If (_ da! = null)

{

Response.Write (_ da.Message + "

")

}

}

}

Thank you for your reading, the above is the content of "what are the Attribute features?" after the study of this article, I believe you have a deeper understanding of what Attribute features have, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report