代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487282
vb arraye.vb
Imports System
Module ArrayE
Dim a As Integer() = {1, 2, 3, 4}
Public Property myprop() As Integer()
Get
Return a
End Get
Set(ByVal Value As Integer())
www.eeworm.com/read/247171/4487283
vb expressionswithandalsoc.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
'this is when first term is False
Imports System
Imports Microsoft.VisualBasic
Module Test
Fun
www.eeworm.com/read/247171/4487284
vb stringliteraltest.vb
Module StringLiteralTest
Function Main() As Integer
End Function
End Module
www.eeworm.com/read/247171/4487285
vb conversionwithxoroperatorboole.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/4487286
vb interfaceg.vb
Option Strict Off
Imports System
Interface I
Function F1()
Function F2()
End Interface
Class C1
Implements I
Public Function F() Implements I.F1, I.F2
End Function
End Class
Mod
www.eeworm.com/read/247171/4487287
vb conversionwithgtoperatortruefalse.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell, Inc (http://www.novell.com)
Imports System
Module ExpressionOperator1
Function Main() As Integer
Dim T As Boolean
www.eeworm.com/read/247171/4487288
vb namedargumentsb.vb
Option Strict Off
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Class C
Public Function fun(ByVal i As Integer, Optional ByVal a1 As Char = "c") As Integer
I
www.eeworm.com/read/247171/4487289
vb constructorj.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'Checking circular references
Imports System
Class A
Public Shared X As Integer = B.Y + 1
Shared Function Hello()
www.eeworm.com/read/247171/4487291
vb synclockb.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Class Test
Private count As Integer = 0
Public Function Add() As Integer
SyncLock Me
count +=
www.eeworm.com/read/247171/4487292
vb assignmentstatementsc.vb
Imports System
Imports Microsoft.VisualBasic
Imports System.Globalization
Imports System.Threading
Module AssignmentStatementsC
Private str As String = "Hello VB.NET World"
Public Property m