作者:潸-苫_390 | 来源:互联网 | 2023-10-12 18:14
好吧,我想在.NET4.6中有这个简单的程序:usingSystem;usingSystem.Threading.Tasks;namespaceConsoleApp1{classP
好吧,我想在.NET 4.6中有这个简单的程序:
using System;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static async void Main()
{
var data = await Task.Run(() =>
{
try
{
return GetResults();
}
catch
{
return null;
}
});
Console.WriteLine(data);
}
private static Tuple GetResults()
{
return new Tuple(1,1);
}
}
}
工作良好.因此,使用.NET 4.7,我们有了新的Tuple值类型.所以,如果我转换它,它变成:
using System;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static async void Main()
{
var data = await Task.Run(() =>
{
try
{
return GetResults();
}
catch
{
return null;
}
});
Console.WriteLine(data);
}
private static (int,int) GetResults()
{
return (1, 2);
}
}
}
大!除了它不起作用.新的元组值类型不可为空,因此甚至无法编译.
任何人都找到一个很好的模式来处理这种情况,你想要传递一个值类型元组,但结果也可能是null?
解决方法:
通过添加可空类型运算符?您可以使GetResults()函数的返回类型为可空:
private static (int,int)? GetResults()
{
return (1, 2);
}
您的代码无法编译,因为Main()函数中不允许异步. (只需调用Main()中的另一个函数)
编辑:自从引入C#7.1(此答案最初发布后几个月)以来,允许使用异步主方法.