<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>C# Software Development</title>
	<atom:link href="http://iseesharp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iseesharp.wordpress.com</link>
	<description>This is my blog about some of my findings in software development.</description>
	<lastBuildDate>Thu, 08 Apr 2010 13:13:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iseesharp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>C# Software Development</title>
		<link>http://iseesharp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iseesharp.wordpress.com/osd.xml" title="C# Software Development" />
	<atom:link rel='hub' href='http://iseesharp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>XmlSerializer made Generic</title>
		<link>http://iseesharp.wordpress.com/2010/04/08/xmlserializer-made-generic/</link>
		<comments>http://iseesharp.wordpress.com/2010/04/08/xmlserializer-made-generic/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 11:42:18 +0000</pubDate>
		<dc:creator>iseesharp</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://iseesharp.wordpress.com/?p=76</guid>
		<description><![CDATA[Here&#8217;s a little generic improvement to the XmlSerializer:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=76&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little generic improvement to the XmlSerializer:</p>
<p><pre class="brush: csharp;">
    public class XmlSerializer&lt;T&gt; : XmlSerializer
    {
        public XmlSerializer()
            : base(typeof (T))
        {
        }

        public void Serialize(FileInfo fileInfo, T o)
        {
            using (FileStream stream = File.Create(fileInfo.FullName))
            {
                Serialize(stream, o);
            }
        }

        public static T Deserialize(FileInfo fileInfo)
        {
            var serializer = new XmlSerializer&lt;T&gt;();
            using (FileStream stream = fileInfo.OpenRead())
            {
                var result = (T) serializer.Deserialize(stream);
                return result;
            }
        }
    }

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iseesharp.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iseesharp.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iseesharp.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iseesharp.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iseesharp.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iseesharp.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iseesharp.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iseesharp.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=76&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iseesharp.wordpress.com/2010/04/08/xmlserializer-made-generic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b8f0b56fdfce762ba80096b43c5e699?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iseesharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Agile &#8211; Team Up!</title>
		<link>http://iseesharp.wordpress.com/2010/04/08/agile-team-up/</link>
		<comments>http://iseesharp.wordpress.com/2010/04/08/agile-team-up/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 11:36:19 +0000</pubDate>
		<dc:creator>iseesharp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://iseesharp.wordpress.com/?p=50</guid>
		<description><![CDATA[Having been quite a nomad concerning work places, I have seen many developer teams. And I must say, many developers that take their title a little to seriously. Just because you are a higher ranked developer on paper, does not mean that you are a better developer than your co-developers. Actually, acheiving these titles often takes quite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=50&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Having been quite a nomad concerning work places, I have seen many developer teams. And I must say, many developers that take their title a little to seriously. Just because you are a higher ranked developer on paper, does not mean that you are a better developer than your co-developers. Actually, acheiving these titles often takes quite some time, and thus might even be outdated regarding new technologies at that time.</p>
<p>There is nothing wrong with having experience, but a really good developer shouldn&#8217;t need a title to earn the respect of your collegues, that will automatically come from working with them. If feel that you have lots of experience to share from, that&#8217;s good, let it propagate to your team through a two-way communicationprocess, in stead of instructing your &#8216;workers&#8217;. Team up! look at them as equals with other skill sets than yourself.</p>
<p>Please check out the <a title="Agile Manifesto" href="http://agilemanifesto.org/" target="_blank">Agile Manifesto</a> if you haven&#8217;t read it before. If you don&#8217;t see the point in it, you might want to embrace <a title="Waterfall" href="http://en.wikipedia.org/wiki/Waterfall_model" target="_self">this</a>.</p>
<p>Titles are paper, while intelligence resides in the head. Remember: &#8220;If you think you are smarter than everyone else, you are probably not as smart as you think.&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iseesharp.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iseesharp.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iseesharp.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iseesharp.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iseesharp.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iseesharp.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iseesharp.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iseesharp.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=50&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iseesharp.wordpress.com/2010/04/08/agile-team-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b8f0b56fdfce762ba80096b43c5e699?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iseesharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Is DataBinding Better?</title>
		<link>http://iseesharp.wordpress.com/2009/12/01/is-databinding-better/</link>
		<comments>http://iseesharp.wordpress.com/2009/12/01/is-databinding-better/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 04:51:13 +0000</pubDate>
		<dc:creator>iseesharp</dc:creator>
				<category><![CDATA[Data Binding]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[user controls]]></category>

		<guid isPermaLink="false">http://iseesharp.wordpress.com/?p=42</guid>
		<description><![CDATA[Asking me? Yes it&#8217;s better to take advantage of this technology. So why do developers avoid using it in so many cases? Guess it&#8217;s because they don&#8217;t realize the advantages it comes with, or is it because they don&#8217;t know how to use it correctly? So what are the advantages? Well, if you ask me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=42&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Asking me? Yes it&#8217;s better to take advantage of this technology. So why do developers avoid using it in so many cases? Guess it&#8217;s because they don&#8217;t realize the advantages it comes with, or is it because they don&#8217;t know how to use it correctly?</p>
<p>So what are the advantages? Well, if you ask me there are many. First you can start building your user interface by defining the data objects, this way you don&#8217;t let the user interface dominate your business model. How to do this:</p>
<p>First you define your data objects:</p>
<p><a href="http://iseesharp.files.wordpress.com/2009/03/classdiagram.png"><img class="aligncenter size-medium wp-image-43" title="Data Objects" src="http://iseesharp.files.wordpress.com/2009/03/classdiagram.png?w=300&#038;h=98" alt="Data Objects" width="300" height="98" /></a></p>
<p>Build your project&#8230;</p>
<p>Then you open your user control on which you wish to map the data object, add a new data source to the project:</p>
<ol>
<li>Data &gt; Show Data Sources &gt; Add New Data Source&#8230;</li>
</ol>
<p>Add the data object. Now the data object will appear in the data sources panel. Modify the controls to add for the data source by using the drop down at the root (select form if you want to display a detailed view using specific controls). For each member in the data source (you can add user- or 3rd party controls if the implement data binding for the data type) select the specific controls to be used.</p>
<p>Now drag the newly added data source onto a form or user control and you will, depending on how you configured the root element of the data source, get  a data grid with auto populated columns or a detailed form view with the controls defined in the data source. The latter is my favorite, and with custom controls implementing data binding its a pleasure building an entire form in just one drag&#8230; and drop.   </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iseesharp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iseesharp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iseesharp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iseesharp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iseesharp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iseesharp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iseesharp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iseesharp.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=42&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iseesharp.wordpress.com/2009/12/01/is-databinding-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b8f0b56fdfce762ba80096b43c5e699?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iseesharp</media:title>
		</media:content>

		<media:content url="http://iseesharp.files.wordpress.com/2009/03/classdiagram.png?w=300" medium="image">
			<media:title type="html">Data Objects</media:title>
		</media:content>
	</item>
		<item>
		<title>LINQ Concurrency</title>
		<link>http://iseesharp.wordpress.com/2009/02/17/linq-concurrency/</link>
		<comments>http://iseesharp.wordpress.com/2009/02/17/linq-concurrency/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 14:08:28 +0000</pubDate>
		<dc:creator>iseesharp</dc:creator>
				<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://iseesharp.wordpress.com/?p=22</guid>
		<description><![CDATA[When using LINQ with multiple threads operations can be interrupted in the middle of everything. To handle this LINQ to SQL has this neat &#8220;Update Check&#8221; feature that checks is the record has been changed or deleted before a update record is submitted. Id this check fails a ChangeConflictException is thrown and we need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=22&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When using LINQ with multiple threads operations can be interrupted in the middle of everything. To handle this LINQ to SQL has this neat &#8220;Update Check&#8221; feature that checks is the record has been changed or deleted before a update record is submitted. Id this check fails a ChangeConflictException is thrown and we need to handle this. We might do as follows:</p>
<p><pre class="brush: csharp;">
while(dataContext.GetChangeSet().Updates.Count &gt; 0)
{
try
        {
            dataContext.SubmitChanges(ConflictMode.ContinueOnConflict);
        }
        catch (ChangeConflictException)
        {
                  foreach(ChangeConflict conflict in dataContext.ChangeConflicts)
                  {
                             conflict.Resolve(RefreshMode.KeepChanges);    
                  }
        }
}
</pre></p>
<p>And presto! We have an update that will survive a multithreaded environment.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iseesharp.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iseesharp.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iseesharp.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iseesharp.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iseesharp.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iseesharp.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iseesharp.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iseesharp.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=22&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iseesharp.wordpress.com/2009/02/17/linq-concurrency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b8f0b56fdfce762ba80096b43c5e699?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iseesharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2008 SP1 and SCSF Guidance</title>
		<link>http://iseesharp.wordpress.com/2009/01/22/scsf-and-visual-studio-2008-sp1-guidance-problem/</link>
		<comments>http://iseesharp.wordpress.com/2009/01/22/scsf-and-visual-studio-2008-sp1-guidance-problem/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 10:14:12 +0000</pubDate>
		<dc:creator>iseesharp</dc:creator>
				<category><![CDATA[Smart Client Software Factory]]></category>

		<guid isPermaLink="false">http://iseesharp.wordpress.com/?p=6</guid>
		<description><![CDATA[I realized that the SCSF guidance package started to behave inconsistently after installing VS 2008 SP1 on my machine. When right clicking a VS project the &#8221;Add View (With Presenter)&#8221; only appears on the context menu for some projects. This is due to the SCSF guidance being incompatible with VS 2008 SP1. There is a fix on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=6&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I realized that the SCSF guidance package started to behave inconsistently after installing VS 2008 SP1 on my machine. When right clicking a VS project the &#8221;Add View (With Presenter)&#8221; only appears on the context menu for some projects.</p>
<p>This is due to the SCSF guidance being incompatible with VS 2008 SP1. There is a fix on <a href="http://www.codeplex.com/smartclient/Wiki/View.aspx?title=Known%20Issues:%20SC-SF%20April%202008%20with%20Visual%20Studio%202008%20and%20SP1%20Beta&amp;referringTitle=Known%20Issues%20/%20Fixes" target="_blank">Codeplex</a>, but it requires you to recompile the guidance package &#8211; I have done this and can confirm that the fix i working properly. Instead of recompiling the guidance package, you can download a custom SCSF installer packaged by Artazor, which includes this fix <a href="http://artazor.wordpress.com/2008/12/07/scsf-april-2008-fix-for-visual-studio-2008-sp1/" target="_blank">here</a>.</p>
<p>Hopefully this will be of some help to someone and maybe the Microsoft Patterns &amp; Practices will have a new <a href="http://msdn.microsoft.com/en-us/library/aa480482.aspx" target="_blank">SCSF</a> release out soon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iseesharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iseesharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iseesharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iseesharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iseesharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iseesharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iseesharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iseesharp.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iseesharp.wordpress.com&amp;blog=6183285&amp;post=6&amp;subd=iseesharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iseesharp.wordpress.com/2009/01/22/scsf-and-visual-studio-2008-sp1-guidance-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b8f0b56fdfce762ba80096b43c5e699?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iseesharp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
