代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487258
vb conversionwithgtoperatorsa.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Imports System
Module ExpressionOperator1
Function Main() As Integer
Dim a As Integer
www.eeworm.com/read/247171/4487259
vb likeoperatorc.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'Option Compare text
Imports System
Module LikeOperator2
Public Function Main() As Integer
Dim a As Boolean
www.eeworm.com/read/247171/4487261
vb overridef.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Imports System
Class base
Public Overridable ReadOnly Property Item(ByVal i As Integer) As Integer
Get
www.eeworm.com/read/247171/4487262
vb expressionoverloadmethodc.vb
'Author:
' Satya Sudha K (ksathyasudha@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System
Module M
Function F(ByVal a As Long, ByVal b As Integer, ByVal c As Long) As Integ
www.eeworm.com/read/247171/4487263
vb overloadresolutionb.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System
Class Base
End Class
Class Derived
Inherits Base
End Class
Module Test
Public i
www.eeworm.com/read/247171/4487264
vb constanta.vb
Option Strict Off
Imports System
Module ConstantA
Public Const a As Integer = 10
Const b As Boolean = True, c As Long = 20
Const d = 20
Const e% = 10
Const f% = 10, g# = 20
Fu
www.eeworm.com/read/247171/4487265
vb mustinherit.vb
Option Strict Off
MustInherit Class C1
Public Function F1()
Dim a As Integer = 10
End Function
Public MustOverride Function F2()
End Class
Class C2
Inherits C1
Public Ove
www.eeworm.com/read/247171/4487266
vb enumconversiona.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Module EnumConversion
Enum e As Integer
A = 9.9
B
End Enum
Function Main() As
www.eeworm.com/read/247171/4487267
vb overrideb.vb
Option Strict Off
Class B
Overridable Function F() As Integer
Return 5
End Function
End Class
Class D
Inherits B
Overrides Function F() As Integer
' you should be abl
www.eeworm.com/read/247171/4487268
vb inheritanced.vb
Option Strict Off
Interface IBase
Function F(ByVal i As Integer)
End Interface
Interface ILeft
Inherits IBase
End Interface
Interface IRight
Inherits IBase
End Interface
Interface IDeri