.NET 4.7 返回元组和可为空值



好吧,假设我在 .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<int,int> GetResults()
        {
            return new Tuple<int,int>(1,1);
        }
    }
}

工作正常。因此,在 .NET 4.7 中,我们有了新的元组值类型。因此,如果我转换它,它会变成:

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()函数中不允许async。(只需在Main()中调用另一个函数(


编辑:自从引入C# 7.1以来(仅在此答案最初发布几个月后(,允许使用async Main方法。

相关内容

  • 没有找到相关文章

最新更新