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)
{
var v1 = value[0];
var v2 = value[1];
//...
}
public object Execute(ThemeContentItem item, object value, string parameter, ISimulation sim)
{
var values = (object[])value;
var v1 = values[0];
var v2 = values[1];
//...
}