common/Ui/SPSHelper/SPSCheck/Program.cs
2026-04-23 17:50:07 +02:00

31 lines
616 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xylem.Common.Hardware.Plc.Siemens.Client.TestbenchAdapter;
namespace SPSCheck
{
class Program
{
static void Main(string[] args)
{
try
{
var c = new Vb6Testbench();
Console.WriteLine("URL:");
c.Connect(Console.ReadLine());
}
catch (Exception ex)
{
Console.WriteLine(ex.Message)
; }
}
}
}