No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 343B

12345678910111213141516
  1. using System;
  2. using DSLink;
  3. class ExampleDSLink : DSLinkContainer
  4. {
  5. public ExampleDSLink() : base(new Configuration("example", responder: true))
  6. {
  7. Console.WriteLine("Starting DSLink...");
  8. }
  9. private static void Main()
  10. {
  11. new ExampleDSLink();
  12. Console.ReadLine(); // Keep the link running.
  13. }
  14. }