31 lines
616 B
C#
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)
|
|
; }
|
|
|
|
}
|
|
}
|
|
}
|