gpt4 book ai didi

c# - C#中如何返回不同的数据类型?

转载 作者:行者123 更新时间:2023-12-02 17:40:40 25 4
gpt4 key购买 nike

我有一个 C# 方法,必须根据输入参数返回 2 个不同的对象。

如何才能做到这一点?

var nextPage = new LoadByContentType(1);
await App.Navigator.PushAsync(nextPage);

private ???? LoadByContentType(int Param1)
{
if (Param1 == 1)
return new ListPage(Param1);
else
return new WebviewPage(Param1);
}

最佳答案

使用两种类型的公共(public)基类型(如 @Sriram Sakthivel 建议)或使用所有其他类的基类object:

Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.

https://msdn.microsoft.com/en-us/library/system.object%28v=vs.110%29.aspx

@ITGuy 提到 ContentPageListPageWebviewPage 共享的基类,因此代码的一个工作版本将是:

private ContentPage LoadByContentType(int Param1)
{
if (Param1 == 1)
return new ListPage(Param1);
else
return new WebviewPage(Param1);
}

关于c# - C#中如何返回不同的数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28646277/

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