I want to use the dropbox api. I use the code from this page - https://www.dropbox.com/developers/documentation/dotnet#tutorial .
But in my Visual.Studio throws an error -
CS1061 "IList<Metadata>" does not contain a definition of "Where", and it was not possible to find an available "Where" extension method that accepts the type "IList<Metadata>" as the first argument (perhaps the using directive or assembly reference was omitted).
Why doesn 't it recognize WHERE ?
Code:
async Task ListRootFolder(DropboxClient dbx)
{
var list = await dbx.Files.ListFolderAsync(string.Empty);
// show folders then files
foreach (var item in list.Entries.Where(i => i.IsFolder))
{
Console.WriteLine("D {0}/", item.Name);
}
foreach (var item in list.Entries.Where(i => i.IsFile))
{
Console.WriteLine("F{0,8} {1}", item.AsFile.Size, item.Name);
}
}