From cfe31980075ba032b46104ec0f1578ea2eb48f9f Mon Sep 17 00:00:00 2001 From: Daniel James Szelogowski Date: Mon, 1 Jan 2024 21:16:17 -0600 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 7cb6e3e..5d3e0ab 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,24 @@ A Chunk List is a new, concurrent, chunk-based data structure that is easily mod To find out more, check out the provided research paper: * /Chunk List/Presentation/"Chunk List.pdf" (DOI: [10.48550/arxiv.2101.00172](https://doi.org/10.48550/arxiv.2101.00172)) +## Installation + +Install the [ChunkList NuGet package](https://www.nuget.org/packages/ChunkList/): + +```bash +dotnet add package ChunkList +``` + # Usage +```csharp +using ChunkList; + +ChunkList list = new ChunkList(); +for (int i = 1; i <= 100; i++) + list.add(i); +list.print(); +``` + The __Presentation__ folder (i.e., the research paper) contains a full presentation and research paper in PDF format, containing the following information: * What is a chunk list? * Where is a chunk list used?