<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Luigi Melisi &#187; WriteLine</title>
	<atom:link href="http://www.luigimelisi.com/tag/writeline/feed" rel="self" type="application/rss+xml" />
	<link>http://www.luigimelisi.com</link>
	<description>Development Blog : C# Code Samples,.NET Tips and Tricks</description>
	<lastBuildDate>Thu, 03 Mar 2011 09:01:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>VB.NET : Come Invertire una stringa</title>
		<link>http://www.luigimelisi.com/programmazione/net_framework/vb-net-come-invertire-una-stringa.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vb-net-come-invertire-una-stringa</link>
		<comments>http://www.luigimelisi.com/programmazione/net_framework/vb-net-come-invertire-una-stringa.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 20:37:10 +0000</pubDate>
		<dc:creator>Luigi Melisi</dc:creator>
				<category><![CDATA[.Net Framework]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[.Net FrameWork]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[charArray]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[dim]]></category>
		<category><![CDATA[Module]]></category>
		<category><![CDATA[ReverseOrder]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[sub]]></category>
		<category><![CDATA[textInput]]></category>
		<category><![CDATA[WriteLine]]></category>

		<guid isPermaLink="false">http://www.luigimelisi.com/?p=619</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<pre class="brush: vb; title: ; notranslate">
Module RevString
Sub Main()
Dim inputString As String = Console.ReadLine()
ReverseOrder(inputString)
End Sub
Private Sub ReverseOrder(ByVal textInput As String)
Dim text2Rev As String = textInput
Dim reversed As String
Dim charArray() As Char = textInput.ToCharArray()
Array.Reverse(charArray)
reversed = charArray
Console.WriteLine(&quot;&quot;)
Console.WriteLine(&quot;Testo originale: &quot; + text2Rev)
Console.WriteLine(&quot;Testo invertito: &quot; + reversed)
End Sub
End Module
</pre>
<p><a href="http://www.youbuy.it/lastminute.aspx" rel="nofollow" target="_blank"><img class="aligncenter" title="YouBuy.it - Last Minute - Offerte Sottocosto" src="http://images.youbuy.it/adv/last.jpg" alt="last VB.NET : Come Invertire una stringa" width="450" height="600" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luigimelisi.com/programmazione/net_framework/vb-net-come-invertire-una-stringa.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

