-
-
Notifications
You must be signed in to change notification settings - Fork 5
Getting Started
Skylark is distributed via Microsofts package manager NuGet. We refer to this page for detailed descriptions on how to get started/use NuGet. Here is a link to the Skylark NuGet package.
By Package Manager (PM):
Install-Package Skylark
By .NET CLI:
dotnet add package Skylark
Simply place the Skylark DLL into your .NET project and add a reference to it. Please keep in mind that the .NET version of your solution must match with the runtime version of the Skylark DLL (currently compiled with .NET Standard 2.0 & 2.1).
The complete example below shows you how to encrypt and decrypt a url address.
1. Create a new Console Application project
2. Install the Skylark package
At a shell prompt in the project directory, type:
By Package Manager (PM):
Install-Package Skylark.Standard
By .NET CLI:
dotnet add package Skylark.Standard
3. Add the following code to Program.cs
using Skylark.Standard.Extension.Url;
namespace SkylarkExample
{
private const string Url = "https://www.google.com/search?q=Taiizor+Skylark";
internal class Program
{
static void Main()
{
string Encode = UrlExtension.Encode(Url);
Console.WriteLine(Encode);
string Decode = UrlExtension.Decode(Encode);
Console.WriteLine(Decode);
}
}
}
4. Run the program
- Tax
- Url
- Web
- Ping
- Port
- Text
- Time
- Hash
- Word
- Color
- Speed
- Lottery
- Storage
- Browser
- Unicode
- Password
- JavaScript
- Cryptology
- Typography
- Temperature
- Compression
- Decompression
- Cascading Style Sheets
- JavaScript Object Notation
- Hypertext Markup Language
- Extensible Markup Language
- Extensible HyperText Markup Language