Skip to content

Instantly share code, notes, and snippets.

@canokay
Created November 11, 2018 21:36
Show Gist options
  • Save canokay/26549ae33c680e8f6272f61832a7ef76 to your computer and use it in GitHub Desktop.
Save canokay/26549ae33c680e8f6272f61832a7ef76 to your computer and use it in GitHub Desktop.
Visual Basic Array Erase Example
Public Class Form1
Private Sub btnDelete_Click(sender As Object, e As EventArgs) Handles btnDelete.Click
Dim ders() As String = {"visual basic", "delphi", "c#"}
Erase ders
MsgBox("Dizi başarıyla silindi.")
End Sub
End Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment