⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.aspx

📁 This is a book about vb.you could learn this from this book
💻 ASPX
字号:
<%@Page Language="VB" %>

<%

Dim b As New BitArray(8,false)
Dim b2 As New BitArray(8,false)
Dim index As Integer


Response.Write( "<br>Count property is :" & b.Count )
Response.Write( "<br>")

index = 0

b(2) = True
b.Set(7, True)
b2(0) = True
b2(1) = True
b2(6) = True

b.Xor( b2 )

Dim value As Boolean
For Each value In b

	Response.Write( "<br>Bit " & index & " - value is : " & value )
	index += 1

Next

%>

⌨️ 快捷键说明

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