February 17, 20233 yr [Info] Operating System Details: Windows 7 Ultimate [E] 17:51:34 - Cannot compile plugin 'Q:\WRobot\\Plugins\Relogger\plugin.cs': Compilator Error : q:\WRobot\Data\temp\4hnm1jmy.0.cs(792,43) : error CS1056: Unexpected symbol "$" ... Hello, i just tried to use symbol "$" in relogger plugin before log output string and this exeption occurs. var smth = "123"; Logging.Write($"smth = {smth}"); Is it problem of wrobot compiller? Because if i use compiled by VS dll file - error have not occurs.
February 17, 20233 yr Hello, WRobot compiler doesn't accept recent C# feature like "$". Use code like var smth = "123"; Logging.Write("smth = " + smth);
Create an account or sign in to comment