代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487164
vb impconversionstringtocharb.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Module ImpConversionStringtoCharB
Function Main() As Integer
Dim a() As Char
Dim b As
www.eeworm.com/read/247171/4487165
vb expconversionstringtochara.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionStringtoCharA
Function Main() As Integer
Dim a As Char
Dim b As String = "This is a
www.eeworm.com/read/247171/4487166
vb conversionwithshiftoperatork.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Imports System
Module ConversionLeftShiftOperator
Function Main() As Integer
Dim A As
www.eeworm.com/read/247171/4487168
vb variablesf.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System
Class A
Dim i As Integer
Dim c As Char
Dim by As Byte
Dim l As Long
Di
www.eeworm.com/read/247171/4487169
vb expconversionlongtosinglea.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionLongtoSingleA
Function Main() As Integer
Dim a As Long = 124
Dim b As Single = CSng
www.eeworm.com/read/247171/4487170
vb overloadinga.vb
Option Strict Off
'Testing overloading in different classes
Class B
Function F()
End Function
Function F(ByVal i As Integer)
End Function
Function F1()
End Function
Func
www.eeworm.com/read/247171/4487171
vb expressionliteralchara.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
'CharacterLiteral ::= DoubleQuoteCharacter StringCharacter DoubleQuoteCharacter C
Option Strict Off
www.eeworm.com/read/247171/4487172
vb propertye.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Explicit On
Imports System
Class AB
Public WriteOnly Property Prop(ByVal a As Integer) As Integer
Set(B
www.eeworm.com/read/247171/4487173
vb attributeassemblyversionbuild.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Imports System
Imports System.Reflection
Imports System.Runtime.CompilerServices
www.eeworm.com/read/247171/4487174
vb blockstatementsa.vb
Imports System
Module BlockStatementsA
Function Main() As Integer
Dim a As Integer = 10
If a = 10 Then
GoTo a
End If
label: a = 11
a: a = 5
If