代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487314
vb conversionwithxoroperatornumb.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Option Strict Off
Imports System
Module ConversionXorOperator
Function Main() As Integer
www.eeworm.com/read/247171/4487315
vb expressionliteralnothinga.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
'Nothing keyword represents the default value of any data type
Option Strict Off
Imports System
Impo
www.eeworm.com/read/247171/4487317
vb typemembersa.vb
Option Strict Off
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Class C
Public Function fun()
Return 10
End Function
Private Function fun(ByVal a As
www.eeworm.com/read/247171/4487318
vb conversionwithequaloperatorb.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Option Strict Off
Imports System
Module ExpressionOperator1
Function Main() As Integer
www.eeworm.com/read/247171/4487319
vb interfaceo.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System
Interface A
Function A1() As Object
End Interface
Class B
Implements A
Public
www.eeworm.com/read/247171/4487321
vb expconversioninttodoublea.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionInttoDoubleA
Function Main() As Integer
Dim a As Integer = 123
Dim b As Double
www.eeworm.com/read/247171/4487322
vb foreachb.vb
Imports System
Module ForEachB
Class C1
Public ReadOnly index As Integer = 0
Sub New()
Dim arr() As Integer = {1, 2, 3}
For Each index In arr
www.eeworm.com/read/247171/4487323
vb attributesassemblyculture.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/4487324
vb methoddeclarationc.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System
Module MethodDeclarationA
Function A(ByRef i As Integer) As Integer
i = 19
www.eeworm.com/read/247171/4487325
vb moduleb.vb
Namespace NS
Public Module M1
Public a As Integer
Public Const b As Integer = 10
Class C1
End Class
End Module
Friend Module MainModule
Function Ma