Need a .NET example of updating a table

I am using the EventDay .NET wrapper and I am having an issue performing an update on a table. I

This is my code:
int orderId = 570;
Console.Out.WriteLine(client.DataService.Update(“RecurringOrder”, orderId, ??? }));

This is the method:
int Update(string table, int id, object values);

I am trying to set the “Status” field to “Inactive” in the “values” parameter, but I have not been able to find the correct syntax for the parameter. And I have not been able to find any .NET examples of updating tables.

Any help would be appreciated. Thanks very much.
Mark

Those values should be correct but they need to be in a Map (Dictionary I think in .NET)