これについていくつかの質問を見て、いくつかの調査を行いました。
私の理解では、IEnumerable で foreach を実行すると、T が参照型 (クラスなど) の場合、ループ内からオブジェクトのプロパティを変更できるはずです。T が値型 (構造体など) の場合、反復変数はローカル コピーになるため、これは機能しません。
次のコードを使用して Windows ストア アプリに取り組んでいます。
私のクラス:
public class WebResult
{
public string Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string DisplayUrl { get; set; }
public string Url { get; set; }
public string TileColor
{
get
{
string[] colorArray = { "FFA200FF", "FFFF0097", "FF00ABA9", "FF8CBF26",
"FFA05000", "FFE671B8", "FFF09609", "FF1BA1E2", "FFE51400", "FF339933" };
Random random = new Random();
int num = random.Next(0, (colorArray.Length - 1));
return "#" + colorArray[num];
}
}
public string Keywords { get; set; }
}
コード:
IEnumerable<WebResult> results = from r in doc.Descendants(xmlnsm + "properties")
select new WebResult
{
Id = r.Element(xmlns + "ID").Value,
Title = r.Element(xmlns + "Title").Value,
Description = r.Element(xmlns +
"Description").Value,
DisplayUrl = r.Element(xmlns +
"DisplayUrl").Value,
Url = r.Element(xmlns + "Url").Value,
Keywords = "Setting the keywords here"
};
foreach (WebResult result in results)
{
result.Keywords = "These, are, my, keywords";
}
if (control is GridView)
{
(control as GridView).ItemsSource = results;
}
結果が表示されると、「キーワード」プロパティは「ここでキーワードを設定する」になります。foreach ループにブレーク ポイントを配置すると、結果オブジェクトが変更されていないことがわかります...
何が起こっているかについてのアイデアはありますか?明らかな何かが欠けているだけですか?IEnumerable は Windows ストア アプリ用の .NET で異なる動作をしますか?