将VB.NET中的'for'循环转换为C#

Kar*_*nor -1 c# vb.net

我目前正在尝试在C#中使用VB.NET函数.我必须将以下内容从VB.NET转换为C#:

For index = LBound(CollectionChannelPanel.EkItems) To UBound(CollectionChannelPanel.EkItems)
Run Code Online (Sandbox Code Playgroud)

我怎样才能做到这一点?

Moo*_*ice 7

foreach(var item in CollectionChannelPanel.EkItems)
{
}
Run Code Online (Sandbox Code Playgroud)