I am trying to retrieve the Author and Editor column values of a sharePoint list using C#(SharePoint client object model). Instead of displaying the value of Author field, it is getting displayed as Microsoft.SharePoint.Client.FieldUservalue. I am trying to retrieve as ListItem["Fieldname"]. Also please suggest how to retrieve the PermMask column value.
CamlQuery query = CamlQuery.CreateAllItemsQuery();
ListeItemCollection col =List.getItems(query);
clientcontext.Load(col);
clientcontext.ExecuteQuery();
foreach (ListItem item in col)
console.writeline(item["Author"]);
Thank You