Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created August 28, 2017 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/82f378082a5cc13d085c2584d04450b9 to your computer and use it in GitHub Desktop.
Save bjoerntx/82f378082a5cc13d085c2584d04450b9 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using TXTextControl.ReportingCloud;
namespace ReportingCloud_CoreApp
{
class Program
{
static void Main(string[] args)
{
ReportingCloud rc = new ReportingCloud("username", "password");
List<Template> lMyTemplates = rc.ListTemplates();
foreach (Template template in lMyTemplates) {
Console.WriteLine(template.TemplateName);
}
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment