代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487293
vb overloading.vb
Option Strict Off
Class c
Function f()
End Function
Function f(ByVal i As Integer)
End Function
Function f(ByVal s As String)
End Function
Function f(ByVal i1 As Integer
www.eeworm.com/read/247171/4487294
vb impconversionshorttointb.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ImpConversionShorttoIntegerC
Function Main() As Integer
Dim a As Short = 111
Dim b As Integer =
www.eeworm.com/read/247171/4487295
vb variablesa.vb
Option Strict Off
Imports System
Class A
Public Shared y As Integer = 20
Public z As Integer = 30
Shared Sub New()
End Sub
Public Sub New()
End Sub
Shared Function f() A
www.eeworm.com/read/247171/4487296
vb expconversionshorttodoublea.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionShorttoDoubleA
Function Main() As Integer
Dim a As Short = 123
Dim b As Double
www.eeworm.com/read/247171/4487297
vb eventj.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Imports System
Class C
Delegate Sub EH()
Public Event E As EH
Public Function S() As Object
RaiseEven
www.eeworm.com/read/247171/4487298
vb impconversionshorttolonga.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ImpConversionShorttoLongA
Function Main() As Integer
Dim a As Short = 123
Dim b As Long
www.eeworm.com/read/247171/4487299
vb expconversionstringtobytea.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionStringtoByteA
Function Main() As Integer
Dim a As Byte
Dim b As String = "123"
www.eeworm.com/read/247171/4487300
vb impconversionshorttostringa.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Module ImpConversionShorttoStringA
Function Main() As Integer
Dim a As Short = 123
Di
www.eeworm.com/read/247171/4487301
vb conditionalcompilatione.vb
Imports System
Module ConditionalCompilation
Function Main() As Integer
Dim value As Integer
'Testing whitespaces between #If
Try
#If True Then
val
www.eeworm.com/read/247171/4487302
vb impoverloadconversiondecimaltosingle.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Module ImpConversionDecimaltoSingle
Function fun(ByVal i As Single)
If i 10.5 Then