Skip to content
This repository was archived by the owner on Aug 2, 2023. It is now read-only.
Jared Hester edited this page Dec 19, 2017 · 24 revisions

System.Text.Formatting

System.Text.Formatting APIs are similar to the existing StringBuilder and TextWriter APIs. They are designed to format values into text streams and to build complex strings. But these APIs are optimized for creating text for the Web. They do formatting with minimum GC heap allocations (1/6 of allocations in some scenarios) and can format directly to UTF8 streams. This can result in significant performance wins for software that does a lot of text

See more at https://github.com/dotnet/corefxlab/wiki/System.Text.Formatting

This package is now available as a NuGet package. See https://dotnet.myget.org/feed/dotnet-corefxlab/package/nuget/System.Text.Formatting

System.IO.FileSystem.Watcher.Polling

FileSystemWatcher like APIs that uses polling to monitor changes to the file system.

Writing Console Applications for the .NET Core

See more at https://github.com/dotnet/corefxlab/wiki/.NET-Core-Console


Find the rest of the preview nuget packages at - https://dotnet.myget.org/gallery/dotnet-corefxlab

Clone this wiki locally