Visual Basic .NET
Från Rilpedia
Visual Basic .NET är ett programspråk baserat på Microsofts Visual Basic (VB). Det kan beskrivas som en evolutionär utveckling från Visual Basic version 6.0 och tidigare. Visual Basic har genom hela sin utveckling blivit allt mer kraftfullt.
Exempel på klassisk Visual Basic:
Private Sub Command1_Click() MsgBox "Hello, World" End Sub
Exempel på Visual Basic .NET:
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click MessageBox.Show("Hello, World") End Sub
Se även
Externa länkar
- Visual Basic Developer Center
- GotDotNet, en resurswebbplats för .NET
- SharpDevelop, en fri utvecklingsmiljö för VB.NET
- Mono, en implementation av VB.NET skrivet i öppen källkod
- Webbplats om kompatibilitetsproblem
- Doing Objects in VB.NET and C#, en e-bok
|