Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.
Users reporting for no reason may be locked out.
public object Execute(ThemeContentItem item, object value, string parameter, ISimulation sim)
{
Console.WriteLine("Script execution started.");
// Do some stuff
var text = value.ToString();
Console.WriteLine("Script doing stuff with value: " + text);
// Do more stuff
Console.WriteLine("Script execution finished.");
return text;
}