-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
33 lines (32 loc) · 1.01 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace JA
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Render3DForm());
}
public static void Log(Type type, object arg, [CallerMemberName] string name = null)
{
Debug.WriteLine($"{type.Name}.{name}({arg})");
}
public static void Log(Type type, [CallerMemberName] string name = null)
=> Log(type, string.Empty, name);
public static void Log(Type type, object[] args, [CallerMemberName] string name = null)
=> Log(type, string.Join(",", args), name);
}
}