代码搜索:如何学习 VB?

找到约 10,000 项符合「如何学习 VB?」的源代码

代码结果 10,000
www.eeworm.com/read/247171/4487222

vb stringtypechartestb.vb

Option Strict Off Imports System Module StringTypeCharTest Function Main() As Integer Dim m As String m = f(20) If m 20 Then System.Console.WriteLine("String
www.eeworm.com/read/247171/4487223

vb exceptionhandlinga.vb

Option Strict Off Imports System Module ExceptionHandlingA Function Main() As Integer ' Finally block is executed regardless of how execution ' leaves the Try statement
www.eeworm.com/read/247171/4487224

vb expressionliteralnumericc.vb

'Author: Ritvik Mayank 'Copyright (C) 2005 Novell, Inc (http://www.novell.com) 'Numeric Literals IntegerLiteral ::= IntegralLiteralValue [ IntegralTypeCharacter ] Option Strict O
www.eeworm.com/read/247171/4487225

vb expressionreclassifiedc.vb

'Author: Ritvik Mayank 'Copyright (C) 2005 Novell, Inc (http://www.novell.com) 'Property group expression A is first reclassified from a property group to a property access 'then
www.eeworm.com/read/247171/4487226

vb exceptionhandlinge.vb

'Author: ' V. Sudharsan (vsudharsan@novell.com) ' ' (C) 2005 Novell, Inc. Module Test Public i As Integer Function fun() As Integer Try Return 1 Finally
www.eeworm.com/read/247171/4487227

vb expconversionstringtolonga.vb

'Author: ' V. Sudharsan (vsudharsan@novell.com) ' ' (C) 2005 Novell, Inc. Module ExpConversionStringtoLongA Function Main() As Integer Dim a As Long Dim b As String = "123"
www.eeworm.com/read/247171/4487228

vb optionalargumenta.vb

Option Strict Off Imports System Class C Function F(ByVal telephoneNo As Long, Optional ByVal code As Integer = 80, Optional ByVal code1 As Integer = 91, Optional ByRef name As String = "Sinha")
www.eeworm.com/read/247171/4487229

vb expconversiondoubletosinglec.vb

'Author: ' V. Sudharsan (vsudharsan@novell.com) ' ' (C) 2005 Novell, Inc. Module ExpConversionDoubletoSingleC Function Main() As Integer Dim a As Single Dim b As Double = -4.940
www.eeworm.com/read/247171/4487230

vb integertypechartest.vb

Imports System Module IntegerTypeCharTest Function Main() As Integer Dim m As Integer m = f(20) If m 20 Then System.Console.WriteLine("IntegerTypeCharTest: f
www.eeworm.com/read/247171/4487231

vb impconversioninttobyteb.vb

'Author: ' V. Sudharsan (vsudharsan@novell.com) ' ' (C) 2005 Novell, Inc. Option Strict Off Module ImpConversionIntegertoByteC Function Main() As Integer Dim a As Integer = 111