代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487199
vb inheritancei.vb
Imports System
'Testing a inner class that inherits from it's outer class
Class C4
Class C5
Inherits C4
Public Function F1() As Integer
Return F()
End Functio
www.eeworm.com/read/247171/4487200
vb constantc.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'Checking on all possible acessors on const
Imports System
Module Test
Const a As Integer = 1
Public Const a1 As I
www.eeworm.com/read/247171/4487201
vb variablesg.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'Date and String are loosely typed.
Option Strict Off
Imports System
Module Default1
Function Main() As Integer
www.eeworm.com/read/247171/4487202
vb attributesclassuseb.vb
'Author: Ritvik Mayank
'Copyright (C) 2005 Novell Inc. (http://www.novell.com)
'Base single-use
Imports System
www.eeworm.com/read/247171/4487203
vb expconversionbooltostringa.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionBooleantoStringA
Function Main() As Integer
Dim a As Boolean = True
Dim b As String
www.eeworm.com/read/247171/4487204
vb doubletypechartestb.vb
Imports System
Module DoubleTypeCharTest
Function Main() As Integer
Dim m As Double
m = f(20)
If m 20 Then
System.Console.WriteLine("DoubleTypeCharTest: fail
www.eeworm.com/read/247171/4487205
vb impconversiondatetostringb.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Imports System.Threading
Imports System.Globalization
Module ImpConversionDatetoStringB
Function Mai
www.eeworm.com/read/247171/4487206
vb constantb.vb
Class A
Public Const c As Integer = 10
End Class
Class B
Inherits A
Public Shadows Const c As Integer = 20
End Class
Module M
Function Main() As Integer
End Function
End Module
www.eeworm.com/read/247171/4487207
vb expconversionsingletoshorta.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionSingletoShortA
Function Main() As Integer
Dim a As Single = 123.501
Dim b As Short
www.eeworm.com/read/247171/4487209
vb localvariablei.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Option Strict Off
Option Explicit Off
Module F
Function Main() As Integer
If fun Nothing Then
Sys