代码搜索:如何学习 VB?

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

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

vb typemembersy.vb

' Author: ' Maverson Eduardo Schulze Rosa (maverson@gmail.com) ' ' GrupoTIC - UFPR - Federal University of Paraná Option Strict Off Imports System Module M Class C Public b As Byte
www.eeworm.com/read/247171/4487304

vb expressionswithandalsob.vb

'Author: Ritvik Mayank 'Copyright (C) 2005 Novell, Inc (http://www.novell.com) 'this is when first term is true Imports System Imports Microsoft.VisualBasic Module Test Func
www.eeworm.com/read/247171/4487305

vb shiftoperators.vb

Option Strict Off Imports System Module M Function Main() As Integer If f() 0 Then System.Console.WriteLine("#A1 Shift operator not working") : Return 1 End If
www.eeworm.com/read/247171/4487306

vb namedargumentsd.vb

Option Strict Off 'Author: ' Satya Sudha K (ksathyasudha@novell.com) ' ' (C) 2005 Novell, Inc. Class C Public Function fun(ByRef i As Integer, ByRef j As Integer) i = 9 j = 10
www.eeworm.com/read/247171/4487307

vb eventd.vb

Imports System Class C Delegate Sub EH(ByVal i As Integer) Public Event E As EH Public Function S() As Object RaiseEvent E(10) End Function End Class Class C1 Dim WithEv
www.eeworm.com/read/247171/4487308

vb arrayf.vb

Imports System Module ArrayF Function Main() As Integer Dim arr As Integer(,) = {{1, 2, 3}, {3, 4, 7}} ReDim arr(1, 1) If arr(0, 0) = 1 Then System.Console.Wr
www.eeworm.com/read/247171/4487309

vb eventg.vb

Imports System Class C Delegate Sub EH() Public Event E As EH Public Function S() As Object RaiseEvent E() End Function End Class Class C1 Dim x As C = New C() Func
www.eeworm.com/read/247171/4487310

vb exitstatementa.vb

'Author: ' V. Sudharsan (vsudharsan@novell.com) ' ' (C) 2005 Novell, Inc. Module exitstmt Public i As Integer Function fun() As Object Exit Function i = i + 1 End Functi
www.eeworm.com/read/247171/4487311

vb gettype.vb

Imports System Module Test Function Main() As Integer Dim s As String = GetType(String).ToString() If s "System.String" Then System.Console.WriteLine("#A1: wrong ty
www.eeworm.com/read/247171/4487313

vb singleliteral.vb

Imports System Module SingleLiteral Function Main() As Integer Dim a As Single = 1.23 Dim b As Single = 12300000000.0 End Function End Module