I\'ve just updated my Unity version from 5.5.2f1 to 5.6.1f1. Suddenly I get the error:
Feature `interpolated strings\' cannot be used because it is n
It seems that interpolated strings are still not working after updating. To still use my above mentioned code, I did it the old way.
Instead of:
return $"{Timestamp}, {Humidity}, {Temp}, {Light}, {Button}";
I did:
return string.Format ("{Timestamp}, {Humidity}, {Temp}, {Light}, {Button}", Timestamp, Humidity, Temp, Light, Button);