You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DynamicExpresso.Interpreter used by CalcBinding to process expression has not implemented implicit convertion between ulong and int and CalcBinding doesn't support explicit convertion.
To make your code working , just add 'UL' suffix to the constant: {calc:Binding MemoryUsage.UsedBytes/1024UL, Mode=OneWay}
This outputs raw value in bytes:
{calc:Binding MemoryUsage.UsedBytes, Mode=OneWay}
However, this just outputs empty string (should output kilobytes):
{calc:Binding MemoryUsage.UsedBytes/1024, Mode=OneWay}
UsedBytes
if of typeUInt64
.The text was updated successfully, but these errors were encountered: