Files
ENIG/Emulator/AGVEmulator/Program.cs
2025-05-26 11:00:23 +09:00

35 lines
852 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace AGVEmulator
{
static class Program
{
/// <summary>
/// 해당 애플리케이션의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
public static class methodext
{
public static string HexString(this byte[] buf)
{
var sb = new System.Text.StringBuilder();
foreach (var b in buf)
{
sb.Append(" " + b.ToString("X2"));
}
return sb.ToString();
}
}
}