How to get workflow status
for Example in progress
context.Load(items);
context.ExecuteQuery();
foreach (ListItem item in items)
{
Console.write(item["What is the field name"]);
}
what is the field name for status for this custom list to show the status of this workflow?
hussain