Clone() As Object
Returns a reference to this instance of System.String.
Return Values :
This instance of String.
Ex :
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
Dim Str As String = "vbcodesblog"
Dim strClone As String = Str.Clone
MsgBox(strClone)
End Sub
End Class
When you execute this code, you will get vbcodesblog in the MessageBox
Anda baru saja membaca artikel yang berkategori VB.Net
dengan judul VB.NET String Clone(). Anda bisa bookmark halaman ini dengan URL http://vbcodesblog.blogspot.com/2010/04/vbnet-strings-clone.html. Terima kasih!
Ditulis oleh:
Farray Cool - Saturday, April 10, 2010
Belum ada komentar untuk "VB.NET String Clone()"
Post a Comment