Sha256: 99713fa9f93041dc09e204b56dfe20bd0cf0c1228dc0b306c9999562bec98323
Contents?: true
Size: 534 Bytes
Versions: 12
Compression:
Stored size: 534 Bytes
Contents
using System; using System.Windows.Forms; using NLog; using NLog.Targets; namespace RichTextBox2 { static class Example { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); // for NLog configuration look in Form1.cs } } }
Version data entries
12 entries across 3 versions & 1 rubygems