### Install ParsecSharp via .NET CLI Source: https://github.com/acple/parsecsharp/blob/dev/README.md Use the dotnet-cli to add the ParsecSharp package to your project. ```bash $ dotnet add package ParsecSharp ``` -------------------------------- ### Install ParsecSharp via NuGet Package Manager Console Source: https://github.com/acple/parsecsharp/blob/dev/README.md Use the Package Manager Console in Visual Studio to install the ParsecSharp package. ```powershell > Install-Package ParsecSharp ``` -------------------------------- ### Importing necessary namespaces Source: https://github.com/acple/parsecsharp/blob/dev/README.md To use ParsecSharp, import the static Parser and Text namespaces into your code. ```csharp using static ParsecSharp.Parser; using static ParsecSharp.Text; ``` -------------------------------- ### Add ParsecSharp via Project File Source: https://github.com/acple/parsecsharp/blob/dev/README.md Include ParsecSharp as a PackageReference in your project's .csproj file. ```xml ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.