gpt4 book ai didi

c# - 如何重载返回类型

转载 作者:行者123 更新时间:2023-11-30 14:34:59 27 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Really impossible to use return type overloading?

有没有办法采用相同的方法并重载其返回类型?就像我在下面的代码中所做的那样。我试过了,但它说两者之间存在歧义。

//supporting methods
private AutoResetEvent ReturnData = new AutoResetEvent(false);
public void PostMessage(string msg)
{ this.Message = msg; this.ReturnData.Set(); }
private string Message;
//a return value overload
public string GetMessage()
{
this.ReturnData.WaitOne();
return this.Message;
}
public byte[] GetMessage(){
this.ReturnData.WaitOne();
return encoder.GetBytes(Message);
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com