Hello,
Here is the code I tried and it works fine. Can you try this?
Hope this helps you.
Here is the code I tried and it works fine. Can you try this?
Code:
using System;
namespace SimpleNetcoreApplication
{
public class Program
{
static void Main(string[] args)
{
var rdk = new RoboDK();
// Connect to existing RoboDK or start a new one if RoboDK is not running
var status = rdk.Connect();
Console.WriteLine($"Connect status: {status}");
//RoboDK _RDK = new RoboDK();
RoboDK.Item camera = rdk.getItem("Camera 1");
camera.setParam("Open");
// close RoboDK
//rdk.CloseRoboDK();
}
}
}