public static void Ch8ModifyCh8Sample() { bool ret = false; var value = new Ch8Sample(); value.iValue = 123; ret = Ch8Native.Ch8ModifyCh8Sample(value, Ch8DataType.INT); value.dValue = 123.123; ret = Ch8Native.Ch8ModifyCh8Sample(value, Ch8DataType.DOUBLE); }
public static extern bool Ch8ModifyCh8Sample([In, Out] Ch8Sample value, Ch8DataType ch8DataType);