csharp擴展方法和擴展屬性

csharp擴展方法和擴展屬性

ID:9240734

大?。?7.69 KB

頁數(shù):12頁

時間:2018-04-24

csharp擴展方法和擴展屬性_第1頁
csharp擴展方法和擴展屬性_第2頁
csharp擴展方法和擴展屬性_第3頁
csharp擴展方法和擴展屬性_第4頁
csharp擴展方法和擴展屬性_第5頁
資源描述:

《csharp擴展方法和擴展屬性》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。

1、CSharp擴展方法擴展方法是實現(xiàn)新增類方法同時不改變類名稱的一種技術(shù)。可以部分的替代原本必須繼承類才能夠?qū)崿F(xiàn)的功能。但是,目前還不能擴展類的屬性,也不能在不繼承類的情況下而直接修改類方法。例如在Asp.netMVCWebApplication中的,我們想快速了解某個Action上是否有某個Attribute.那我們可以使用這樣的擴展方法:///

///Getsthemethod.//////Type///Theinstance./

2、//Themethodselector.///MethodInfopublicstaticMethodInfoGetMethod(thisTinstance,Expression>methodSelector){//itisnotworkallmethodreturn((MethodCallExpression)methodSelector.Body).Method;}///

///Getsthemethod.///

3、ary>//////Theinstance.///Themethodselector.///MethodInfopublicstaticMethodInfoGetMethod(thisTinstance,Expression>methodSelector){return((MethodCallExpression)methodSele

4、ctor.Body).Method;}///

///Determineswhetherthespecifiedmemberhasattribute.//////Thetypeoftheattribute.///Themember.//////trueifthespecifiedmemberhasattribute;otherwise,false.///p

5、ublicstaticboolHasAttribute(thisMemberInfomember)whereTAttribute:Attribute{returnGetAttributes(member).Length>0;}///

///Getstheattributes.//////Thetypeoftheattribute.///Themember.///

6、rns>publicstaticTAttribute[]GetAttributes(thisMemberInfomember)whereTAttribute:Attribute{varattributes=member.GetCustomAttributes(typeof(TAttribute),true);return(TAttribute[])attributes;}如何使用,請看下面的代碼,我們使用lambda表達(dá)式獲取某個方法,然后獲取其上面的Attribute:[Fact]publicvoidGetHttpPostAttributeF

7、romCreateAction(){//Arrangevarcontroller=GetEmployeeController(newMemeoryEmployeeBoService());//ActboolhasPostAttribute=controller.GetMethod(e=>e.Create(newEmployee())).HasAttribute();//AssertAssert.

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。