public ConsultSensor(string name, byte[] reg, SensorConvertFunc func) { if (func == null) throw new NullReferenceException("func"); this._name = name; this._registers = reg; this.ConvFunc = func; }
public ConsultSensor(string name, byte[] reg, SensorConvertFunc func) { if (func == null) { throw new NullReferenceException("func"); } this._name = name; this._registers = reg; this.ConvFunc = func; }