<?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>biestado &#187; Mono/.Net</title>
	<atom:link href="http://biestado.kraptor.com/category/programacion/mono-dotnet/feed" rel="self" type="application/rss+xml" />
	<link>http://biestado.kraptor.com</link>
	<description>Al fin y al cabo todo es cuestión de unos y ceros...</description>
	<lastBuildDate>Mon, 03 Nov 2008 16:37:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>C5 Generics Library</title>
		<link>http://biestado.kraptor.com/2008/10/07/c5-generics-library</link>
		<comments>http://biestado.kraptor.com/2008/10/07/c5-generics-library#comments</comments>
		<pubDate>Tue, 07 Oct 2008 13:13:42 +0000</pubDate>
		<dc:creator>Kraptor</dc:creator>
				<category><![CDATA[Mono/.Net]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Tecnología]]></category>

		<guid isPermaLink="false">http://biestado.kraptor.com/?p=154</guid>
		<description><![CDATA[Después de leer la entrada de Miguel de Icaza sobre la liberación de Mono 2.0, he encontrado una joya que voy a empezar a usar ya mismo en mis proyectos: C5 Generics Library Seguro que algún lector de este blog también le saca provecho&#8230; si aún queda alguno después de tanto tiempo sin publicar nada.]]></description>
			<content:encoded><![CDATA[<p>Después de leer la <a href="http://tirania.org/blog/archive/2008/Oct-06.html">entrada de Miguel de Icaza sobre la liberación de Mono 2.0</a>, he encontrado una joya que voy a empezar a usar ya mismo en mis proyectos: </p>
<p><a href="http://www.itu.dk/research/c5/">C5 Generics Library</a></p>
<p>Seguro que algún lector de este blog también le saca provecho&#8230; si aún queda alguno después de tanto tiempo sin publicar nada. <img src='http://biestado.kraptor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://biestado.kraptor.com/2008/10/07/c5-generics-library/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transformando un System.Drawing.Image a un Gdk.Pixbuf</title>
		<link>http://biestado.kraptor.com/2007/04/24/transformando-un-systemdrawingimage-a-un-gdkpixbuf</link>
		<comments>http://biestado.kraptor.com/2007/04/24/transformando-un-systemdrawingimage-a-un-gdkpixbuf#comments</comments>
		<pubDate>Tue, 24 Apr 2007 13:10:17 +0000</pubDate>
		<dc:creator>Kraptor</dc:creator>
				<category><![CDATA[Mono/.Net]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Tecnología]]></category>

		<guid isPermaLink="false">http://biestado.kraptor.com/2007/04/24/transformando-un-systemdrawingimage-a-un-gdkpixbuf</guid>
		<description><![CDATA[La receta es sencilla, y no conozco una forma más elegante de hacerlo. Si alguien tiene algún comentario, adelante. CSharp:static Gdk.Pixbuf Image2Pixbuf&#40; Image image &#41; &#123; &#160; using &#40; MemoryStream stream = new MemoryStream&#40;&#41; &#41; &#160; &#123; &#160; &#160; image.Save&#40; stream, System.Drawing.Imaging.ImageFormat.Png &#41;; &#160; &#160; stream.Position = 0; &#160; &#160; return new Gdk.Pixbuf&#40; stream &#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>La receta es sencilla, y no conozco una forma más elegante de hacerlo. Si alguien tiene algún comentario, adelante.</p>
<div><div style="font-weight:bold;">CSharp:</div><ol><li><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0600FF;">static</span> Gdk.<span style="color: #0000FF;">Pixbuf</span> Image2Pixbuf<span style="color: #000000;">&#40;</span> Image image <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div></li>
<li style="font-weight: bold;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #0600FF;">using</span> <span style="color: #000000;">&#40;</span> MemoryStream stream = <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> MemoryStream<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span></div></li>
<li><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #000000;">&#123;</span></div></li>
<li style="font-weight: bold;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; image.<span style="color: #0000FF;">Save</span><span style="color: #000000;">&#40;</span> stream, <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Drawing</span>.<span style="color: #0000FF;">Imaging</span>.<span style="color: #0000FF;">ImageFormat</span>.<span style="color: #0000FF;">Png</span> <span style="color: #000000;">&#41;</span>;</div></li>
<li><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; stream.<span style="color: #0000FF;">Position</span> = <span style="color: #FF0000;">0</span>;</div></li>
<li style="font-weight: bold;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0600FF;">return</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> Gdk.<span style="color: #0000FF;">Pixbuf</span><span style="color: #000000;">&#40;</span> stream <span style="color: #000000;">&#41;</span>;</div></li>
<li><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color: #000000;">&#125;</span></div></li>
<li style="font-weight: bold;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span> </div></li></ol></div>
<p>Si, me he puesto un poco técnico, pero no quería dejar el blog más tiempo sin actualizar.</p>
]]></content:encoded>
			<wfw:commentRss>http://biestado.kraptor.com/2007/04/24/transformando-un-systemdrawingimage-a-un-gdkpixbuf/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>¡Oh! ¡Rápido, necesito un Guid en MonoDevelop!</title>
		<link>http://biestado.kraptor.com/2007/02/01/%c2%a1oh-%c2%a1rapido-necesito-un-guid-en-monodevelop</link>
		<comments>http://biestado.kraptor.com/2007/02/01/%c2%a1oh-%c2%a1rapido-necesito-un-guid-en-monodevelop#comments</comments>
		<pubDate>Thu, 01 Feb 2007 11:00:50 +0000</pubDate>
		<dc:creator>Kraptor</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Mono/.Net]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[Tecnología]]></category>

		<guid isPermaLink="false">http://biestado.kraptor.com/2007/02/01/%c2%a1oh-%c2%a1rapido-necesito-un-guid-en-monodevelop</guid>
		<description><![CDATA[Si estás trabajando con Visual Studio, hay un menu muy bonito para generar un Guid. Sencillo y práctico. En VS 2005 lo quitaron, pero lo volvieron a incluir en el primer Service Pack. Si, en cambio, utilizas MonoDevelop, no tienes esa opción, por lo que te puedes hacer un pequeño programita en .Net para generar [...]]]></description>
			<content:encoded><![CDATA[<p>Si estás trabajando con <a href="http://www.microsoft.com/spanish/msdn/vs2005/">Visual Studio</a>, hay un menu muy bonito para generar un Guid. Sencillo y práctico. En VS 2005 lo quitaron, pero <a href="http://www.webpronews.com/expertarticles/expertarticles/wpn-62-20070105TheCreateGUIDmenuitemisback.html">lo volvieron a incluir en el primer Service Pack</a>.</p>
<p>Si, en cambio, utilizas <a href="http://www.monodevelop.com/">MonoDevelop</a>, no tienes esa opción, por lo que te puedes hacer un pequeño programita en .Net para generar un Guid de forma muy sencilla, o si lo necesitas ya y no tienes tiempo que perder, lo más cómodo es abrir el shell de Boo:</p>
<p><code>>>> print System.Guid.NewGuid()<br />
1313a9a8-41e0-4ada-aa8f-bcf642314438<br />
</code></p>
<p>Y si eres el más vago del mundo, o te falla el plugin de Boo para MonoDevelop, entonces visita <a href="http://www.newguid.com">NewGuid.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://biestado.kraptor.com/2007/02/01/%c2%a1oh-%c2%a1rapido-necesito-un-guid-en-monodevelop/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

