Strings.StrConv(String, Microsoft.VisualBasic.VbStrConv, [Integer]) As String
Returns a string converted as specified.
Return Values :
Returns a string converted as specified.
Ex :
Strings.StrConv("vb codes blog", VbStrConv.ProperCase) returns Vb Codes Blog
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
MsgBox(Strings.StrConv("vb codes blog", VbStrConv.ProperCase))
End Sub
End Class
When you execute this code, you will get Vb Codes Blog in the MessageBox
Anda baru saja membaca artikel yang berkategori VB.Net
dengan judul VB.Net Strings.StrConv(). Anda bisa bookmark halaman ini dengan URL http://vbcodesblog.blogspot.com/2011/04/string-vbnet-stringsstrconv.html. Terima kasih!
Ditulis oleh:
Farray Cool - Monday, April 05, 2010
Belum ada komentar untuk "VB.Net Strings.StrConv()"
Post a Comment