http://msdn.microsoft.com/en-us/library/aa289500%28v=vs.71%29.aspxを使用しようとしています
Item
正常に動作しますが、VBバージョンでよく見られます
ただし、button.Item
C# には存在しませんが、新しいプロジェクトを開いて VB.NET で試してみると、Item
. Item
それはなぜですか、C# でどのように使用できますか?
ビジュアルベーシック
Default Public ReadOnly Property Item(ByVal Index As Integer) As _
System.Windows.Forms.Button
Get
Return CType(Me.List.Item(Index), System.Windows.Forms.Button)
End Get
End Property
C#
public System.Windows.Forms.Button this [int Index]
{
get
{
return (System.Windows.Forms.Button) this.List[Index];
}
}