<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comentarios para #include "sion.h"</title>
	<atom:link href="http://robertoyudice.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertoyudice.wordpress.com</link>
	<description>Scire tuum nihil est, nisi te scire hoc sciat alter</description>
	<pubDate>Tue, 30 Sep 2008 23:39:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comentario de claudia en Deshabilitar una fecha o dia en el control de calendario en ASP.NET</title>
		<link>http://robertoyudice.wordpress.com/2007/05/02/deshabilitar-una-fecha-o-dia-en-el-control-de-calendario-en-aspnet/#comment-41</link>
		<dc:creator>claudia</dc:creator>
		<pubDate>Tue, 09 Sep 2008 18:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/05/02/deshabilitar-una-fecha-o-dia-en-el-control-de-calendario-en-aspnet/#comment-41</guid>
		<description>muy buena informacion, muchas gracias me sirvio mucho

Saludos</description>
		<content:encoded><![CDATA[<p>muy buena informacion, muchas gracias me sirvio mucho</p>
<p>Saludos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de woallance3 en Cambiar IP en Linux por medio de la consola(bash shell)</title>
		<link>http://robertoyudice.wordpress.com/2008/05/01/cambiar-ip-en-linux-por-medio-de-la-consolabash-shell/#comment-40</link>
		<dc:creator>woallance3</dc:creator>
		<pubDate>Tue, 02 Sep 2008 16:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/?p=29#comment-40</guid>
		<description>mmmm muy bueno, =2 Excelente.</description>
		<content:encoded><![CDATA[<p>mmmm muy bueno, =2 Excelente.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de sucto en Cambiar IP en Linux por medio de la consola(bash shell)</title>
		<link>http://robertoyudice.wordpress.com/2008/05/01/cambiar-ip-en-linux-por-medio-de-la-consolabash-shell/#comment-39</link>
		<dc:creator>sucto</dc:creator>
		<pubDate>Mon, 25 Aug 2008 16:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/?p=29#comment-39</guid>
		<description>Excelente!, mas explicito no podias ser, te pasaste.</description>
		<content:encoded><![CDATA[<p>Excelente!, mas explicito no podias ser, te pasaste.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de David en Funcion para palindromo en .NET  y C#</title>
		<link>http://robertoyudice.wordpress.com/2007/04/26/funcion-para-palindromo-en-net-y-c/#comment-38</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 10 Aug 2008 02:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/04/26/funcion-para-palindromo-en-net-y-c/#comment-38</guid>
		<description>si puse el using System;</description>
		<content:encoded><![CDATA[<p>si puse el using System;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de David en Funcion para palindromo en .NET  y C#</title>
		<link>http://robertoyudice.wordpress.com/2007/04/26/funcion-para-palindromo-en-net-y-c/#comment-37</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 10 Aug 2008 01:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/04/26/funcion-para-palindromo-en-net-y-c/#comment-37</guid>
		<description>Tu programa no me salio, no se porque
lo que hice fue
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“Escriba una palabra: “);
Console.WriteLine((EsPalindromo(c.ReadLine()))?“Si es palindromo”:“No es palindromo”);
Console.ReadLine();
}
public static bool EsPalindromo(String palabra)
{
palabra = palabra.Replace(” “, “”).ToLower();
char[] inversa = palabra.ToCharArray();
Array.Reverse(inversa);
string strInversa = new string(inversa);
return palabra == strInversa;
}
}
}

todo eso en un block 
lo compile con csc nombre.cs

y me daba un error en public static bool EsPalindromo(String palabra) 

porque tu string es String CON Mayus.

despues lo cambie y me dieron muchos errores, que me recomiendas?</description>
		<content:encoded><![CDATA[<p>Tu programa no me salio, no se porque<br />
lo que hice fue<br />
namespace ConsoleApplication1<br />
{<br />
class Program<br />
{<br />
static void Main(string[] args)<br />
{<br />
Console.WriteLine(“Escriba una palabra: “);<br />
Console.WriteLine((EsPalindromo(c.ReadLine()))?“Si es palindromo”:“No es palindromo”);<br />
Console.ReadLine();<br />
}<br />
public static bool EsPalindromo(String palabra)<br />
{<br />
palabra = palabra.Replace(” “, “”).ToLower();<br />
char[] inversa = palabra.ToCharArray();<br />
Array.Reverse(inversa);<br />
string strInversa = new string(inversa);<br />
return palabra == strInversa;<br />
}<br />
}<br />
}</p>
<p>todo eso en un block<br />
lo compile con csc nombre.cs</p>
<p>y me daba un error en public static bool EsPalindromo(String palabra) </p>
<p>porque tu string es String CON Mayus.</p>
<p>despues lo cambie y me dieron muchos errores, que me recomiendas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de David en Funcion para palindromo en .NET  y C#</title>
		<link>http://robertoyudice.wordpress.com/2007/04/26/funcion-para-palindromo-en-net-y-c/#comment-36</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 10 Aug 2008 01:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/04/26/funcion-para-palindromo-en-net-y-c/#comment-36</guid>
		<description>lo voy a probar gracias!</description>
		<content:encoded><![CDATA[<p>lo voy a probar gracias!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de pau en Los 5 tipos de prueba del software</title>
		<link>http://robertoyudice.wordpress.com/2007/04/08/los-5-tipos-de-prueba-del-software/#comment-35</link>
		<dc:creator>pau</dc:creator>
		<pubDate>Sat, 09 Aug 2008 03:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/04/08/los-5-tipos-de-prueba-del-software/#comment-35</guid>
		<description>De mucha utilidad tu informacion graxias te FELICITO BYE CUIDATE</description>
		<content:encoded><![CDATA[<p>De mucha utilidad tu informacion graxias te FELICITO BYE CUIDATE</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de oscar en Los 5 tipos de prueba del software</title>
		<link>http://robertoyudice.wordpress.com/2007/04/08/los-5-tipos-de-prueba-del-software/#comment-34</link>
		<dc:creator>oscar</dc:creator>
		<pubDate>Mon, 14 Jul 2008 15:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/04/08/los-5-tipos-de-prueba-del-software/#comment-34</guid>
		<description>esta bueno, pero recién estoy aprendiendo y quiero mayor información</description>
		<content:encoded><![CDATA[<p>esta bueno, pero recién estoy aprendiendo y quiero mayor información</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Roberto en Como crear un DLL en Visual Studio</title>
		<link>http://robertoyudice.wordpress.com/2007/05/14/como-crear-un-dll-en-visual-studio/#comment-32</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Wed, 02 Jul 2008 05:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/05/14/como-crear-un-dll-en-visual-studio/#comment-32</guid>
		<description>Hola, estoy empezando con vs 2005 y tu nota fue de mucha ayuda, solo una pregunta.
al momento de importar la librería. ¿no se importaría nada más ClassLibrary1?, es decir:
   imports ClassLibrary1

Al principio me marcaba error porque no encontraba la clase a la que hacía referencia, en este caso FuncionesMate.

Saludos</description>
		<content:encoded><![CDATA[<p>Hola, estoy empezando con vs 2005 y tu nota fue de mucha ayuda, solo una pregunta.<br />
al momento de importar la librería. ¿no se importaría nada más ClassLibrary1?, es decir:<br />
   imports ClassLibrary1</p>
<p>Al principio me marcaba error porque no encontraba la clase a la que hacía referencia, en este caso FuncionesMate.</p>
<p>Saludos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de POCHYS en El origen del nombre C#</title>
		<link>http://robertoyudice.wordpress.com/2007/04/18/el-origen-del-nombre-c/#comment-31</link>
		<dc:creator>POCHYS</dc:creator>
		<pubDate>Sat, 14 Jun 2008 04:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://robertoyudice.wordpress.com/2007/04/18/el-origen-del-nombre-c/#comment-31</guid>
		<description>excelente tu sapiensa, me sacaste del hoyo, no me salia la cancion sin este tono</description>
		<content:encoded><![CDATA[<p>excelente tu sapiensa, me sacaste del hoyo, no me salia la cancion sin este tono</p>
]]></content:encoded>
	</item>
</channel>
</rss>
