次のコードとこの質問の提案を踏まえて、この元のメソッドを変更し、IEnumarableに値があるかどうかを確認し、値がない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
});
}
すべてがreturnステートメントの中にあるので、どうすればよいのかわかりません。このようなものでしょうか?
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>();
}
}
上記の方法は機能せず、実際には機能しません。それは私の意図を説明しているだけだと思います。抽象クラスのインスタンスを作成できないため、コードが機能しないことを指定する必要があると思います。
ここに呼び出しコードがありますが、いつでもnull 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;
}
}
お時間をいただきありがとうございます。
2
ここのコードを見ると、yield returnとyield breakを使用しているはずです。
—
Chris Marisic 2010