<?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>Comments on: Storing an Image in an XML file</title>
	<atom:link href="http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html</link>
	<description>Real World .NET Methods, Tricks, and Examples</description>
	<lastBuildDate>Thu, 11 Mar 2010 18:24:27 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joel</title>
		<link>http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html/comment-page-1#comment-5942</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Fri, 17 Apr 2009 14:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/?p=155#comment-5942</guid>
		<description>Hmmm. Strangely like the request above... but for the record...

&quot;XElement&quot; is not my class, it is part of the System.Xml.Linq Namespace.  Check out this link if you are interested:
http://www.developingfor.net/c-30/upgrade-your-c-skills-part-5-linq-to-xml.html</description>
		<content:encoded><![CDATA[<p>Hmmm. Strangely like the request above&#8230; but for the record&#8230;</p>
<p>&#8220;XElement&#8221; is not my class, it is part of the System.Xml.Linq Namespace.  Check out this link if you are interested:<br />
<a href="http://www.developingfor.net/c-30/upgrade-your-c-skills-part-5-linq-to-xml.html" rel="nofollow">http://www.developingfor.net/c-30/upgrade-your-c-skills-part-5-linq-to-xml.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karim</title>
		<link>http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html/comment-page-1#comment-5918</link>
		<dc:creator>karim</dc:creator>
		<pubDate>Fri, 17 Apr 2009 01:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/?p=155#comment-5918</guid>
		<description>Hi Joel,

I read your article and very intersted to see your “XElement” class, could you provide it to me</description>
		<content:encoded><![CDATA[<p>Hi Joel,</p>
<p>I read your article and very intersted to see your “XElement” class, could you provide it to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html/comment-page-1#comment-1921</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Mon, 27 Oct 2008 15:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/?p=155#comment-1921</guid>
		<description>Hi Reza,

TypeConverter is a .NET class in the System.ComponentModel namespace.  While you can inherit it and create your own TypeConverter, above I am using it &quot;out of the box.&quot;

Here are a couple of links you might find helpful:
http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx
http://www.codeproject.com/KB/dotnet/BasicPropertyGrid.aspx</description>
		<content:encoded><![CDATA[<p>Hi Reza,</p>
<p>TypeConverter is a .NET class in the System.ComponentModel namespace.  While you can inherit it and create your own TypeConverter, above I am using it &#8220;out of the box.&#8221;</p>
<p>Here are a couple of links you might find helpful:<br />
<a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx</a><br />
<a href="http://www.codeproject.com/KB/dotnet/BasicPropertyGrid.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/BasicPropertyGrid.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reza Wahadj</title>
		<link>http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html/comment-page-1#comment-1906</link>
		<dc:creator>Reza Wahadj</dc:creator>
		<pubDate>Sun, 26 Oct 2008 04:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/?p=155#comment-1906</guid>
		<description>Hi Joel,

I read your article and very intersted to see your &quot;TypeConverter&quot; class, could you provide it to me

Warmly
Reza</description>
		<content:encoded><![CDATA[<p>Hi Joel,</p>
<p>I read your article and very intersted to see your &#8220;TypeConverter&#8221; class, could you provide it to me</p>
<p>Warmly<br />
Reza</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://www.developingfor.net/net/storing-an-image-in-an-xml-file.html/comment-page-1#comment-1493</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Wed, 01 Oct 2008 21:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/?p=155#comment-1493</guid>
		<description>Something to keep in mind - if you dispose of the MemoryStream before you use your bitmap, you may get weird GDI+ errors. I&#039;ve been bitten by this a few times, usually when calling bitmap.Save(). The exception isn&#039;t very helpful - &quot;A generic error occurred in GDI+.&quot;</description>
		<content:encoded><![CDATA[<p>Something to keep in mind &#8211; if you dispose of the MemoryStream before you use your bitmap, you may get weird GDI+ errors. I&#8217;ve been bitten by this a few times, usually when calling bitmap.Save(). The exception isn&#8217;t very helpful &#8211; &#8220;A generic error occurred in GDI+.&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
