arraylistargumentoutofrangeexception_simple.aspx

来自「Code for VB.NET教程源码 很好的源码」· ASPX 代码 · 共 20 行

ASPX
20
字号
<%@Page Language="VB" debug="true" %>

<h3>ArrayList</h3>
<%

Dim movieList As IList

movieList = new ArrayList()
movieList.Add("Pulp Fiction")
movieList.Add("Aliens")
movieList.Add("The Good, the Bad and the Ugly")


Dim s As string 

s = CStr(movieList[10])

%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?