Download AzureTranslationDemo.zip, last updated 05/05/2017 (11.40 KB)

Download
  • md5: bd23f676993eeba7d959e4c367863f4a
  • sha1: 3863025a0c8a87a6282014af512b209aa2a01fed
  • sha256: 265891bb2116398ea5f56664a414853d0896fcca65ce37ece151f68d238a646f
using System;
using System.Windows.Forms;

// Translating text with Azure cognitive services
// http://www.cyotek.com/blog/translating-text-with-azure-cognitive-services

// This work is licensed under the Creative Commons Attribution 4.0 International License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.

namespace Cyotek.Demo.AzureTranslation
{
  static class Program
  {
    #region Static Methods

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new MainForm());
    }

    #endregion
  }
}

Donate

Donate