主頁(yè) > 知識(shí)庫(kù) > Attribute/特性心得隨筆

Attribute/特性心得隨筆

熱門標(biāo)簽:外呼系統(tǒng)代理品牌 怎么給超市做地圖標(biāo)注入駐店 外呼系統(tǒng)費(fèi)用一年 辦理400電話證件 巫師3為什么地圖標(biāo)注的財(cái)寶沒(méi)有 十堰正規(guī)電銷機(jī)器人系統(tǒng) 手機(jī)地圖標(biāo)注如何刪除 世紀(jì)佳緣地圖標(biāo)注怎么去掉 寧波自動(dòng)外呼系統(tǒng)代理
復(fù)制代碼 代碼如下:

p>/*/p>p>*特性/p>p>*//p>

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// summary>
/// DisAttribute 的摘要說(shuō)明
/// /summary>
public class DisAttribute : Attribute
{
private string _message;
/// summary>
/// 描述
/// /summary>
public string Message
{
get { return _message; }
}

public DisAttribute(string message)
{
this._message = message;
}
}

/*

*類

*/
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.EnterpriseServices;
using System.Linq;
using System.Web;
using System.Web.DynamicData;


/// summary>
/// User 的摘要說(shuō)明
/// /summary>
[DisAttribute("User"),TableName("user"),Description("user")]
public class User
{
private int? _id;
/// summary>
/// Id
/// /summary>
[DisAttribute("主鍵")]
public int? Id
{
get { return _id; }
set { _id = value; }
}


private string _name;
/// summary>
/// 名稱
/// /summary>
[DisAttribute("名稱")]
public string Name
{
get { return _name; }
set { _name = value; }
}
}

/*

*獲取

*/
復(fù)制代碼 代碼如下:

//獲取特性
User u = new User();
Type _t = u.GetType();
foreach (Attribute a in _t.GetCustomAttributes(true))
{
if (a.GetType().ToString() == "DisAttribute")
{
DisAttribute _da = (DisAttribute)a;
if (_da != null)
{
Response.Write(_da.Message + "br>");
}
}
}
//獲取所有屬性
u.Id = 888888;
u.Name = "陳奕迅";
foreach (PropertyInfo item in _t.GetProperties())
{
//特性
Attribute atr = item.GetCustomAttribute(typeof(DisAttribute));
if (atr.GetType().ToString() == "DisAttribute")
{
DisAttribute _da = (DisAttribute)atr;
if (_da != null)
{
Response.Write(_da.Message + "br>");
}
}
}

標(biāo)簽:泰州 山西 通遼 天門 景德鎮(zhèn) 牡丹江 嘉興

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Attribute/特性心得隨筆》,本文關(guān)鍵詞  Attribute,特性,心得,隨筆,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Attribute/特性心得隨筆》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Attribute/特性心得隨筆的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章