netfx-System.Collections.Generic.IEnumerable.Traverse 1.0.0.17

There is a newer version of this package available.
See the version list below for details.
dotnet add package netfx-System.Collections.Generic.IEnumerable.Traverse --version 1.0.0.17
NuGet\Install-Package netfx-System.Collections.Generic.IEnumerable.Traverse -Version 1.0.0.17
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="netfx-System.Collections.Generic.IEnumerable.Traverse" Version="1.0.0.17" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add netfx-System.Collections.Generic.IEnumerable.Traverse --version 1.0.0.17
#r "nuget: netfx-System.Collections.Generic.IEnumerable.Traverse, 1.0.0.17"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install netfx-System.Collections.Generic.IEnumerable.Traverse as a Cake Addin
#addin nuget:?package=netfx-System.Collections.Generic.IEnumerable.Traverse&version=1.0.0.17

// Install netfx-System.Collections.Generic.IEnumerable.Traverse as a Cake Tool
#tool nuget:?package=netfx-System.Collections.Generic.IEnumerable.Traverse&version=1.0.0.17

Traverse an enumerable tree, depth or breadth first.
Example:

var dirs = new DirectoryInfo("C:\\")
.Traverse(TraverseKind.BreadthFirst, dir => dir.EnumerateDirectories());

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on netfx-System.Collections.Generic.IEnumerable.Traverse:

Package Downloads
netfx-System.TypeInheritance

Allows inspecting the exact type inheritance tree as declared in source, rather than the flattened view that reflection provides (for implemented interfaces, for example). Enables code to determine what are the interfaces implemented directly by a type rather than a base class, as well as determine the "distance" in the hierarchy to those implementations. var tree = typeof(Window).GetInheritanceTree(); // Gets just the base class ContentControl, instead // of that plus 9 interfaces implemented on base types Assert.Equal(1, tree.Inheritance.Count); Assert.Equal(typeof(ContentControl), tree.Inheritance.First().Type);

Adapter.Implementation.Source

The provided adapter pattern allows to convert any object to any other supported type, as provided by the registered adapters. This package provides the actual implementation of the service. It should only be added to the bootstrapping component of your application. ======= Example ======= IProject project = GetCurrentProject(); // say we need to use it as an MSBuild project, if possible IMSBuildProject msbuild = project.As<IMSBuildProject>(); if (msbuild != null) // do MSBuild stuff with it. ======= Adapters ======= public class ProjectToMsBuildAdapter : IAdapter<IProject, IMSBuildProject> { // Implement actual conversion. } The conversion behavior is now decoupled from the usage. Note that to create adapter implementations, you need to install the Adapter.Sdk package.

netfx-System.TypeInheritance.Tests

Tests for netfx-System.TypeInheritance

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 11,021 8/30/2011
1.0.0.17 4,043 6/15/2011
1.0.0.15 1,571 5/20/2011
1.0.0.13 1,750 3/20/2011
1.0.0.10 1,680 3/20/2011
1.0.0.9 4,171 3/20/2011
1.0.0.8 1,753 3/20/2011
1.0.0.7 1,995 3/20/2011