https://github.com/bwatts/quill
Quill is a standalone .NET library focused on building text streams using deferred writes. Write strings better and write better strings!
https://github.com/bwatts/quill
csharp dotnet dotnet-core quill streams string-building stringbuilder strings text textwriter utilities
Last synced: 10 months ago
JSON representation
Quill is a standalone .NET library focused on building text streams using deferred writes. Write strings better and write better strings!
- Host: GitHub
- URL: https://github.com/bwatts/quill
- Owner: bwatts
- License: mit
- Created: 2020-10-14T02:53:45.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T04:14:02.000Z (almost 3 years ago)
- Last Synced: 2024-12-13T03:50:03.125Z (about 1 year ago)
- Topics: csharp, dotnet, dotnet-core, quill, streams, string-building, stringbuilder, strings, text, textwriter, utilities
- Language: C#
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README

Quill is a standalone [.NET Standard 2.1 library](https://www.nuget.org/packages/Quill) focused on **building text streams using deferred writes**.
Write strings better and write better strings!
## Purpose
Quill provides a composable, deferred, and consistent API for writing text.
## Contents
* [1. Quick Start](#1-quick-start)
* [1.1. Install](#11-install)
* [1.2. Add to the local scope](#12-add-to-the-local-scope)
* [2. Core Features](#2-core-features)
* [2.1. TODO](#21-todo)
## 1. Quick Start
### 1.1. Install
Quill is a [.NET Standard 2.1 package](https://www.nuget.org/packages/Quill) available on NuGet:
```bash
dotnet add package Quill
```
It is under the [MIT license](license.txt) and, like knowledge, wants to be free.
### 1.2. Add to the local scope
```C#
using static Quill.Local;
```
## 2. Core Features
### 2.1. TODO