A simple C# .NET Standard library which inlcude the most link-shortener services.
To include this class in your solution/project you need to add the reference to this class:
- right click on the project in "explore solutions" on the right
- click on "add..."
- click on "reference.."
- go in the tab "browse" on the left
- click the button "browse" on the bottom- right
- select the .dll file downloaded from here: https://github.com/Gabboxl/LinkShorterDotNET/releases (you can also build the latest code with Visual Studio by downloading the solution at the top).
The class is very simple to use, here's an example:
using LinkShorterNET;
Linkshorter test = new Linkshorter("Adfocus", "https://gabboxl.ga");
<-- we call the constructor, in this example we will use the Adfocus service.
return test.GetLink();
<-- we get the link shorten with the GetLink() method.
-under construction-