Skip to content

Commit

Permalink
Merge remote-tracking branch 'kyle/instance-ids'
Browse files Browse the repository at this point in the history
  • Loading branch information
malloch committed May 13, 2024
2 parents 4fad0c1 + e6a81f4 commit f446d5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/csharp/Mapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1022,10 +1022,10 @@ unsafe private void _SetValue(double[] value, UInt64 instanceId)
}
}

public Signal SetValue<T>(T value)
public Signal SetValue<T>(T value, UInt64 instanceId = 0)
{
dynamic temp = value;
_SetValue(temp, 0);
_SetValue(temp, instanceId);
return this;
}

Expand Down

0 comments on commit f446d5a

Please sign in to comment.