可以从一个元组初始化多个变量吗?

Possible to initialize multiple variables from a tuple?(可以从一个元组初始化多个变量吗?)
本文介绍了可以从一个元组初始化多个变量吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在某些语言(例如 PHP、Haskell 或 Scala)中,您可以通过类似于以下伪代码的方式从元组中分配多个变量:

In some languages (such as PHP, Haskell, or Scala), you can assign multiple variables from tuples in a way that resembles the following pseudocode:

list(string value1, string value2) = tupleWithTwoValues;

我找不到在 C# 中执行此操作的方法,但是,如果不编写更长、更丑陋的代码:

I can't find a way to do this in C#, however, without writing longer, uglier code:

string firstValue = tupleWithTwoValues.Item1;
string secondValue = tupleWithTwoValues.Item2;

这种两行方案显然不是世界末日,但我一直在寻找编写更漂亮代码的方法.

This two-line solution is obviously not the end of the world, but I'm always looking for ways to write prettier code.

有人知道更好的方法吗?

Does anyone know a better way to do this?

推荐答案

现在可以在 C# 7 中使用:

This is now available in C# 7:

public (string first, string last) FullName()
{
    return ("Rince", "Wind");
}

(var first, var last) = FullName();

您甚至可以使用单个 var 声明:

You can even use a single var declaration:

var (first, last) = FullName();

官方文档中有关解构元组的更多信息.

More on destructuring tuples in the official documentation.

这篇关于可以从一个元组初始化多个变量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Can I initialize a BCL immutable collection using braces?(我可以使用大括号初始化BCL不可变集合吗?)
The type initializer for #39;System.Data.Entity.Internal.AppConfig#39; threw an exception on a Sub Website(“System.Data.Entity.Internal.AppConfig的类型初始化程序在子网站上引发异常)
error loading database initializer with EF6(使用 EF6 加载数据库初始化程序时出错)
How to force fire OnModelCreating every DataContext initialized up(如何强制触发 OnModelCreating 每个初始化的 DataContext)
The type appear in two structurally incompatible initializations within a single LINQ to Entities query(该类型出现在单个 LINQ to Entities 查询中的两个结构不兼容的初始化中)
Does Stacklt;gt; constructor reverse the stack when being initialized from other one?(是否堆栈lt;gt;构造函数在从另一个初始化时反转堆栈?)