Progress Monitor for IdealProgrammer.com
Take Swift, Intelligent, Massive, Planned, Loving, Effective (S.I.M.P.L.E.) Action to Transform Self into Ideal
Skip Repetitive Navigational Links
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console
Please login
VB.NET StrReverse()
Description:
Illustrates using VB.NET StrReverse() Code Example.
Example Class:
Public Class clsStrReverse Public Sub Main() '**************************************************************************************** ' Example #1: StrReverse(string) - returns a string with the characters of the ' string in reverse order '**************************************************************************************** Console.WriteLine("Example #1: StrReverse(string) ") Dim strString1 As String = "Hello World" ' Return Uppercase Console.WriteLine(StrReverse(strString1)) 'Returns dlroW olleH 'write blank line to make output easier to read Console.WriteLine() 'Prevent console from closing before you press enter Console.ReadLine() End Sub End Class
Example Module:
Module Module1 Sub Main() Dim myclsStrReverse As New clsStrReverse myclsStrReverse.Main() End Sub End Module
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console