Files
LIAM/packages/System.ValueTuple.4.6.1/PACKAGE.md
Meik 3d4f60d83e chore: sync LIAM solution snapshot incl. diagnostics tooling
- update multiple LIAM projects and solution/config files

- add LiamWorkflowDiagnostics app sources and generated outputs

- include current workspace state (dependencies and build outputs)
2026-02-27 09:12:34 +01:00

27 lines
920 B
Markdown

## About
Provides implementations for various value tuple variants. A value tuple is a data structure that has a specific number and sequence of values.
## Main Types
The main types provided by this library are:
- `System.ValueTuple`
- `System.ValueTuple<T1>`
- `System.ValueTuple<T1,T2>`
- `System.ValueTuple<T1,T2,T3>`
- `System.ValueTuple<T1,T2,T3,T4>`
- `System.ValueTuple<T1,T2,T3,T4,T5>`
- `System.ValueTuple<T1,T2,T3,T4,T5,T6>`
- `System.ValueTuple<T1,T2,T3,T4,T5,T6,T7>`
- `System.ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>`
- `System.TupleExtensions`
- `System.Runtime.CompilerServices.TupleElementNamesAttribute`
## Additional Documentation
- For more information about these APIs, see [Value tuples](https://learn.microsoft.com/en-us/dotnet/standard/value-tuples).
## License
`System.ValueTuple` is released as open source under the [MIT license](https://licenses.nuget.org/MIT).