Mobile-API for write.as application that provides an anonymous way to share your writing on the web
using WriteAsApi;
namespace Application
{
internal class Program
{
static async Task Main()
{
var api = new WriteAs();
string text = await api.PublishText("Hello World!");
Console.WriteLine(text);
}
}
}