Skip To Content
Toggle navigation
Packages
Upload
Statistics
Documentation
Downloads
Blog
Sign in
Package type
All types
Dependency
.NET tool
Template
Options
Include prerelease
2 packages returned for Tags:"deconstruction"
Sort by
Relevance
Downloads
Recently updated
ArrayDeconstructors.
Source
by:
hazzik
11,139 total downloads
last updated
10/12/2022
Latest version:
1.0.4
deconstructor
deconstruction
array
arrays
tuple
tuples
ArrayDeconstructors is a source package which allows you to use new C# 7 deconstruction syntax to deconstruct array into variables: int[] array = <...>; var (a,b) = array;
SpanDeconstructors.
Source
by:
hazzik
381 total downloads
last updated
11/1/2019
Latest version:
1.0.0
deconstructor
deconstruction
span
read-only-span
tuple
tuples
SpanDeconstructors is a source package which allows you to use C# 7 deconstruction syntax to deconstruct array or span into variables: Span<int> span = <...>; var (a,b) = span;