Hi,
An IEnumerable is not an Enum, it is a 'List' that you cannot modify. If you are more used to play with List just do the following.
First add the following namespace at the top of your file:
Done, you have you list of friends :)
Regards,
Linvi
An IEnumerable is not an Enum, it is a 'List' that you cannot modify. If you are more used to play with List just do the following.
First add the following namespace at the top of your file:
using System.Linq;
var user = User.GetUserFromScreenName(username); var friends = user.GetFriends().ToList();
Regards,
Linvi