代码搜索:如何学习 VB?
找到约 10,000 项符合「如何学习 VB?」的源代码
代码结果 10,000
www.eeworm.com/read/247171/4487233
vb attributeassemblyversionmajor.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/4487235
vb mustinherita.vb
Option Strict Off
'Testing MustInherit classes with MustOverride methods that do not return a value
MustInherit Class C1
Public Function F1()
Dim a As Integer = 10
End Function
Pu
www.eeworm.com/read/247171/4487236
vb forb.vb
Imports System
Module ForB
Class C1
Public index As Integer = 0
Function x() As Object
For index = 0 To 2
Console.WriteLine(index)
Next
www.eeworm.com/read/247171/4487237
vb expconversiondecimaltostringa.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionDecimaltoStringA
Function Main() As Integer
Dim a As Decimal = 123052
Dim b As Stri
www.eeworm.com/read/247171/4487238
vb mustinheritc.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
MustInherit Class A
MustInherit Class B
End Class
End Class
Class C
Inherits A
End Class
Module InheritanceN
www.eeworm.com/read/247171/4487239
vb interfacek.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
'To Check if MustOverridable methods can Implement the interface functions
Interface A
Function fun(ByVal a As Integer
www.eeworm.com/read/247171/4487240
vb expconversiondoubletosingled.vb
'Author:
' V. Sudharsan (vsudharsan@novell.com)
'
' (C) 2005 Novell, Inc.
Module ExpConversionDoubletoSingleD
Function Main() As Integer
Dim c As Boolean = False
Dim a As Single
www.eeworm.com/read/247171/4487241
vb inheritance.vb
Option Strict Off
Imports System
'Testing simple and multi-level inheritence with all methods declared public
Public Class C1
Public Function f1() As Integer
Return 1
End Function
www.eeworm.com/read/247171/4487244
vb localdeclarationc.vb
' Author:
' Maverson Eduardo Schulze Rosa (maverson@gmail.com)
'
' GrupoTIC - UFPR - Federal University of Paraná
Imports System
Module LocalDeclarationC
Function Main() As Integer
Dim
www.eeworm.com/read/247171/4487246
vb propertyk.vb
'Author:
' Satya Sudha K (ksathyasudha@novell.com)
'
' (C) 2005 Novell, Inc.
'
' Two overloaded and applicable properties
Option Strict Off
Imports System
Module M
Class C
Dim a() As I