Враховуючи наведений нижче код та пропозиції, наведені в цьому запитанні , я вирішив змінити цей початковий метод і запитати, чи є якісь значення в IEnumerable повернути його, якщо не повернути IEnumerable без значень.
Ось метод:
public IEnumerable<Friend> FindFriends()
{
//Many thanks to Rex-M for his help with this one.
//https://stackoverflow.com/users/67/rex-m
return doc.Descendants("user").Select(user => new Friend
{
ID = user.Element("id").Value,
Name = user.Element("name").Value,
URL = user.Element("url").Value,
Photo = user.Element("photo").Value
});
}
Оскільки все знаходиться у зворотній заяві, я не знаю, як я міг це зробити. Чи щось подібне буде працювати?
public IEnumerable<Friend> FindFriends()
{
//Many thanks to Rex-M for his help with this one.
//https://stackoverflow.com/users/67/rex-m
if (userExists)
{
return doc.Descendants("user").Select(user => new Friend
{
ID = user.Element("id").Value,
Name = user.Element("name").Value,
URL = user.Element("url").Value,
Photo = user.Element("photo").Value
});
}
else
{
return new IEnumerable<Friend>();
}
}
Вищеописаний метод не працює, і насправді цього не передбачається; Я просто відчуваю, що це ілюструє мої наміри. Я вважаю, що слід зазначити, що код не працює, оскільки ви не можете створити екземпляр абстрактного класу.
Ось код виклику, я не хочу, щоб він отримував нульовий IEnumerable будь-коли:
private void SetUserFriends(IEnumerable<Friend> list)
{
int x = 40;
int y = 3;
foreach (Friend friend in list)
{
FriendControl control = new FriendControl();
control.ID = friend.ID;
control.URL = friend.URL;
control.SetID(friend.ID);
control.SetName(friend.Name);
control.SetImage(friend.Photo);
control.Location = new Point(x, y);
panel2.Controls.Add(control);
y = y + control.Height + 4;
}
}
Спасибі за ваш час.