Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
foreach (has.has_actorRow actorrow in actortable.Rows) { foreach(object actorcell in actorrow){ //add all to session } }
「has.has_actorrow」にはメソッド「getenumerator」がありません」というエラーが表示されます
おそらくあなたはやりたいactorrow.Cells
actorrow.Cells
foreach (has.has_actorRow actorrow in actortable.Rows) { foreach(object actorcell in actorrow.Cells){ //add all to session } }