InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language Referencena VB.Net Keywords Structure Draft for Information Only
Content
VB.NET Tuples
VB.NET TuplesStarting with Visual Basic 2017, the Visual Basic language offers built-in support for tuples that makes creating tuples and accessing the elements of tuples easier. A tuple is a lightweight data structure that has a specific number and sequence of values. When you instantiate the tuple, you define the number and the data type of each value (or element). For example, a 2-tuple (or pair) has two elements. The first might be a Boolean value, while the second is a String. Because tuples make it easy to store multiple values in a single object, they are often used as a lightweight way to return multiple values from a method. Important Tuple support requires the ValueTuple type. If the .NET Framework 4.7 is not installed, you must add the NuGet package System.ValueTuple, which is available on the NuGet Gallery. Without this package, you may get a compilation error similar to, "Predefined type 'ValueTuple(Of,,,)' is not defined or imported." Instantiating and using a tupleYou instantiate a tuple by enclosing its comma-delimited values im parentheses. Each of those values then becomes a field of the tuple. For example, the following code defines a triple (or 3-tuple) with a Date as its first value, a String as its second, and a Boolean as its third. VBDim holiday = (#07/04/2017#, "Independence Day", True) By default, the name of each field in a tuple consists of the string Item along with the field's one-based position in the tuple. For this 3-tuple, the Date field is Item1, the String field is Item2, and the Boolean field is Item3. The following example displays the values of fields of the tuple instantiated in the previous line of code VBConsole.WriteLine($"{holiday.Item1} is {holiday.Item2}" + $"{If(holiday.Item3, ", a national holiday", String.Empty)}") ' Output: 7/4/2017 12:00:00 AM Is Independence Day, a national holiday The fields of a Visual Basic tuple are read-write; after you've instantiated a tuple, you can modify its values. The following example modifies two of the three fields of the tuple created in the previous example and displays the result. VBholiday.Item1 = #01/01/2018# holiday.Item2 = "New Year's Day" Console.WriteLine($"{holiday.Item1} is {holiday.Item2}" + $"{If(holiday.Item3, ", a national holiday", String.Empty)}") ' Output: 1/1/2018 12:00:00 AM Is New Year's Day, a national holiday Instantiating and using a named tupleRather than using default names for a tuple's fields, you can instantiate a named tuple by assigning your own names to the tuple's elements. The tuple's fields can then be accessed by their assigned names or by their default names. The following example instantiates the same 3-tuple as previously, except that it explicitly names the first field EventDate, the second Name, and the third IsHoliday. It then displays the field values, modifies them, and displays the field values again. VBDim holiday = (EventDate:=#07/04/2017#, Name:="Independence Day", IsHoliday:=True) Console.WriteLine($"{holiday.EventDate} Is {holiday.Name}" + $"{If(holiday.IsHoliday, ", a national holiday", String.Empty)}") holiday.Item1 = #01/01/2018# holiday.Item2 = "New Year's Day" Console.WriteLine($"{holiday.Item1} is {holiday.Item2}" + $"{If(holiday.Item3, ", a national holiday", String.Empty)}") ' The example displays the following output: ' 7/4/2017 12:00:00 AM Is Independence Day, a national holiday ' 1/1/2018 12:00:00 AM Is New Year's Day, a national holiday Inferred tuple element namesStarting with Visual Basic 15.3, Visual Basic can infer the names of tuple elements; you do not have to assign them explicitly. Inferred tuple names are useful when you initialize a tuple from a set of variables, and you want the tuple element name to be the same as the variable name. The following example creates a stateInfo tuple that contains three explicitly named elements, state, stateName, and capital. Note that, in naming the elements, the tuple initialization statement simply assigns the named elements the values of the identically named variables. VBDim state = "MI" Dim stateName = "Michigan" Dim capital = "Lansing" Dim stateInfo = ( state:=state, stateName:=stateName, capital:=capital ) Console.WriteLine($"{stateInfo.stateName}: 2-letter code: {stateInfo.State}, Capital {stateInfo.capital}") ' The example displays the following output: ' Michigan: 2-letter code: MI, Capital Lansing Because elements and variables have the same name, the Visual Basic compiler can infer the names of the fields, as the following example shows. VBDim state = "MI" Dim stateName = "Michigan" Dim capital = "Lansing" Dim stateInfo = ( state, stateName, capital ) Console.WriteLine($"{stateInfo.stateName}: 2-letter code: {stateInfo.State}, Capital {stateInfo.capital}") ' The example displays the following output: ' Michigan: 2-letter code: MI, Capital Lansing To enable inferred tuple element names, you must define the version of the Visual Basic compiler to use in your Visual Basic project (*.vbproj) file: XML<PropertyGroup> <LangVersion>15.3</LangVersion> </PropertyGroup> The version number can be any version of the Visual Basic compiler starting with 15.3. Rather than hard-coding a specific compiler version, you can also specify "Latest" as the value of LangVersion to compile with the most recent version of the Visual Basic compiler installed on your system. For more information, see setting the Visual Basic language version. In some cases, the Visual Basic compiler cannot infer the tuple element name from the candidate name, and the tuple field can only be referenced using its default name, such as Item1, Item2, etc. These include:
When field name inference fails, Visual Basic does not generate a compiler error, nor is an exception thrown at runtime. Instead, tuple fields must be referenced by their predefined names, such as Item1 and Item2. Tuples versus structuresA Visual Basic tuple is a value type that is an instance of one of the a System.ValueTuple generic types. For example, the holiday tuple defined in the previous example is an instance of the ValueTuple<T1,T2,T3> structure. It is designed to be a lightweight container for data. Since the tuple aims to make it easy to create an object with multiple data items, it lacks some of the features that a custom structure might have. These include:
If custom members, property and field validation, or immutability are important, you should use the Visual Basic Structure statement to define a custom value type. A Visual Basic tuple does inherit the members of its ValueTuple type. In addition to its fields, these include the following methods:
In addition, the ValueTuple types implement IStructuralComparable and IStructuralEquatable interfaces, which allow you to define customer comparers. Assignment and tuplesVisual Basic supports assignment between tuple types that have the same number of fields. The field types can be converted if one of the following is true:
Other conversions are not considered for assignments. Let's look at the kinds of assignments that are allowed between tuple types. Consider these variables used in the following examples: VB' The number and field types of all these tuples are compatible. ' The only difference Is the field names being used. Dim unnamed = (42, "The meaning of life") Dim anonymous = (16, "a perfect square") Dim named = (Answer:=42, Message:="The meaning of life") Dim differentNamed = (SecretConstant:=42, Label:="The meaning of life") The first two variables, unnamed and anonymous, do not have semantic names provided for the fields. Their field names are the default Item1 and Item2. The last two variables, named and differentName have semantic field names. Note that these two tuples have different names for the fields. All four of these tuples have the same number of fields (referred to as 'arity'), and the types of those fields are identical. Therefore, all of these assignments work: VB' Assign named to unnamed. named = unnamed ' Despite the assignment, named still has fields that can be referred to as 'answer' and 'message'. Console.WriteLine($"{named.Answer}, {named.Message}") ' Output: 42, The meaning of life ' Assign unnamed to anonymous. anonymous = unnamed ' Because of the assignment, the value of the elements of anonymous changed. Console.WriteLine($"{anonymous.Item1}, {anonymous.Item2}") ' Output: 42, The meaning of life ' Assign one named tuple to the other. named = differentNamed ' The field names are Not assigned. 'named' still has 'answer' and 'message' fields. Console.WriteLine($"{named.Answer}, {named.Message}") ' Output: 42, The meaning of life Notice that the names of the tuples are not assigned. The values of the fields are assigned following the order of the fields in the tuple. Finally, notice that we can assign the named tuple to the conversion tuple, even though the first field of named is an Integer, and the first field of conversion is a Long. This assignment succeeds because converting an Integer to a Long is a widening conversion. VB' Assign an (Integer, String) tuple to a (Long, String) tuple (using implicit conversion). Dim conversion As (Long, String) = named Console.WriteLine($"{conversion.Item1} ({conversion.Item1.GetType().Name}), " + $"{conversion.Item2} ({conversion.Item2.GetType().Name})") ' Output: 42 (Int64), The meaning of life (String) Tuples with different numbers of fields are not assignable: VB' Does not compile. ' VB30311: Value of type '(Integer, Integer, Integer)' cannot be converted ' to '(Answer As Integer, Message As String)' var differentShape = (1, 2, 3) named = differentShape Tuples as method return valuesA method can return only a single value. Frequently, though, you'd like a method call to return multiple values. There are several ways to work around this limitation:
For example, the TryParse methods in .NET return a Boolean value that indicates whether the parsing operation succeeded. The result of the parsing operation is returned in a variable passed by reference to the method. Normally, a call to the a parsing method such as Int32.TryParse looks like the following: VBDim numericString As String = "123456" Dim number As Integer Dim result = Int32.TryParse(numericString, number) Console.WriteLine($"{If(result, $"Success: {number:N0}", "Failure")}") ' Output: 123,456 We can return a tuple from the parsing operation if we wrap the call to the Int32.TryParse method in our own method. In the following example, NumericLibrary.ParseInteger calls the Int32.TryParse method and returns a named tuple with two elements. VBImports System.Globalization Public Module NumericLibrary Public Function ParseInteger(value As String) As (Success As Boolean, Number As Int32) Dim number As Integer Return (Int32.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, number), number) End Function End Module You can then call the method with code like the following: VBDim numericString As String = "123,456" Dim result = ParseInteger(numericString) Console.WriteLine($"{If(result.Success, $"Success: {result.Number:N0}", "Failure")}") Console.ReadLine() ' Output: Success: 123,456 Visual Basic tuples and tuples in the .NET FrameworkA Visual Basic tuple is an instance of one of the System.ValueTuple generic types, which were introduced in the .NET Framework 4.7. The .NET Framework also includes a set of generic System.Tuple classes. These classes, however, differ from Visual Basic tuples and the System.ValueTuple generic types in a number of ways:
Extension methods in the TupleExtensions class make it easy to convert between Visual Basic tuples and .NET Tuple objects. The ToTuple method converts a Visual Basic tuple to a .NET Tuple object, and the ToValueTuple method converts a .NET Tuple object to a Visual Basic tuple. The following example creates a tuple, converts it to a .NET Tuple object, and converts it back to a Visual Basic tuple. The example then compares this tuple with the original one to ensure that they are equal. VBModule Example Sub Main() Dim cityInfo = (name:="New York", area:=468.5, population:=8_550_405) Console.WriteLine($"{cityInfo}, type {cityInfo.GetType().Name}") ' Convert the Visual Basic tuple to a .NET tuple. Dim cityInfoT = TupleExtensions.ToTuple(cityInfo) Console.WriteLine($"{cityInfoT}, type {cityInfoT.GetType().Name}") ' Convert the .NET tuple back to a Visual Basic tuple and ensure they are the same. Dim cityInfo2 = TupleExtensions.ToValueTuple(cityInfoT) Console.WriteLine($"{cityInfo2}, type {cityInfo2.GetType().Name}") Console.WriteLine($"{NameOf(cityInfo)} = {NameOf(cityInfo2)}: {cityInfo.Equals(cityInfo2)}") Console.ReadLine() End Sub End Module ' The example displays the following output: ' (New York, 468.5, 8550405), type ValueTuple`3 ' (New York, 468.5, 8550405), type Tuple`3 ' (New York, 468.5, 8550405), type ValueTuple`3 ' cityInfo = cityInfo2 : True See alsoSource/Reference©sideway ID: 200900024 Last Updated: 9/24/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019