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 } }