第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在反射時(shí)如何區(qū)分這兩個(gè)函數(shù) ,比如在 Type.GetMethod獲取的時(shí)候?

在反射時(shí)如何區(qū)分這兩個(gè)函數(shù) ,比如在 Type.GetMethod獲取的時(shí)候?

C#
HUH函數(shù) 2023-04-07 22:18:45
兩個(gè)方法,簽名唯一的區(qū)別在于參數(shù)帶Out 例:public void Foo(out string value) {}public void Foo(string value){}
查看完整描述

2 回答

?
慕斯王

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超2個(gè)贊

Type.GetMethod可以得到一個(gè)MethodInfo對(duì)象,MethodInfo對(duì)象有一個(gè)方法是GetParameters即得到ParameterInfo數(shù)組,ParameterInfo對(duì)象有一個(gè)屬性是IsOut。

已知foo的函數(shù)原型么?如果已知的話可以用GetMethod(string, Type[])這個(gè)重載。
比如你提到的有這樣一個(gè)類:
class a
{
public void foo(string value);
public void foo(out string value);
}

如果想獲得上面那一個(gè)方法,用這個(gè)語句:

1

type.GetMethod("foo", new Type[] { typeof(string) });

如果想獲得下面那一個(gè)方法,用這個(gè)語句:

1

type.GetMethod("foo", new Type[] { typeof(string).MakeByRefType() });
1 class Program 

2 { 

3 static void Main(string[] args)
4 { 



string content = "main"; //#1 variable 

6 MethodInfo testMethod = typeof(Program).GetMethod("TestMethod", 

7 BindingFlags.Static | BindingFlags.NonPublic);
8 if (testMethod != null)
9 {
10 // Following way can not take content back.
11 //

12 testMethod.Invoke(null, new object[] { content /* #1 variable */ });
13 Console.WriteLine(content); // #1 variable, Output is: main
14 //
15
16 

17 object[] invokeArgs = new object[] { content /* #1 variable */ };
18 testMethod.Invoke(null, invokeArgs);
19 content = (string)invokeArgs[0]; // #2 variable, bypass from invoke, set to content.
20 Console.WriteLine(content); // #2 variable, Output is: test
21 }
22 }
23 

24 static void TestMethod(ref string arg)
25 {
26 arg = "test"; // #2 variable, wanna bypass to main process.
27 }
28 } 


查看完整回答
反對(duì) 回復(fù) 2023-04-11
?
慕森王

TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超3個(gè)贊

Type.GetMethod可以得到一個(gè)MethodInfo對(duì)象,MethodInfo對(duì)象有一個(gè)方法是GetParameters即得到ParameterInfo數(shù)組,ParameterInfo對(duì)象有一個(gè)屬性是IsOut。

查看完整回答
反對(duì) 回復(fù) 2023-04-11
  • 2 回答
  • 0 關(guān)注
  • 149 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)