<?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>MyWeblog</title>
	<atom:link href="http://buettsenmann.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://buettsenmann.wordpress.com</link>
	<description>meine kleine C# Sammlung</description>
	<lastBuildDate>Fri, 27 Mar 2009 10:18:31 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='buettsenmann.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MyWeblog</title>
		<link>http://buettsenmann.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://buettsenmann.wordpress.com/osd.xml" title="MyWeblog" />
	<atom:link rel='hub' href='http://buettsenmann.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Programm als Symbol im Infobereich anzeigen</title>
		<link>http://buettsenmann.wordpress.com/2009/03/27/programm-als-symbol-im-infobereich-anzeigen/</link>
		<comments>http://buettsenmann.wordpress.com/2009/03/27/programm-als-symbol-im-infobereich-anzeigen/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 10:15:13 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C# Beispiele]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=37</guid>
		<description><![CDATA[Um ein Programm lediglich als Symbol im Infobereich (Symbole in der Taskleiste) zu starten und zu steuern (z.B. beenden, Info anzeigen) muss lediglich dieser Code in die Program Klasse eingefügt werden. using System; using System.Windows.Forms; // NotifyIcon using System.Drawing; // Icon namespace OssiSoft { public class OSNotifyIconMinimum { public OSNotifyIconMinimum() { } public static NotifyIcon [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=37&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Um ein Programm lediglich als Symbol im Infobereich (Symbole in der Taskleiste) zu starten und zu steuern (z.B. beenden, Info anzeigen) muss lediglich dieser Code in die Program Klasse eingefügt werden.</p>
<p>using System;<br />
using System.Windows.Forms; // NotifyIcon<br />
using System.Drawing; // Icon</p>
<p>namespace OssiSoft {</p>
<p>public class OSNotifyIconMinimum<br />
{<br />
public OSNotifyIconMinimum()<br />
{<br />
}</p>
<p>public static NotifyIcon aAppIcon = new NotifyIcon();<br />
public static ContextMenu aSysTrayMenu = new ContextMenu();<br />
public static MenuItem aDisplayInfo = new MenuItem(&#8222;Info über&#8230;&#8220;);<br />
public static MenuItem aExitApp = new MenuItem(&#8222;Beenden&#8220;);</p>
<p>static void Main()<br />
{<br />
Icon aIcon = new Icon(@&#8220;NOTES.ICO&#8220;);<br />
aAppIcon.Icon = aIcon;<br />
aExitApp.Click += new System.EventHandler(ExitApp_Click);<br />
aSysTrayMenu.MenuItems.Add(aDisplayInfo);<br />
aDisplayInfo.Click += new System.EventHandler(DisplayInfo_Click);<br />
aSysTrayMenu.MenuItems.Add(aExitApp);<br />
aAppIcon.ContextMenu = aSysTrayMenu;<br />
aAppIcon.Text = &#8222;dot.net-Magazin&#8220;;<br />
aAppIcon.Visible = true;<br />
Application.Run();<br />
}</p>
<p>private static void DisplayInfo_Click(object sender, System.EventArgs e)<br />
{<br />
MessageBox.Show(&#8222;NotifyIcon ohne Formular&#8220;, &#8222;Test&#8220;,<br />
MessageBoxButtons.OK);<br />
}</p>
<p>private static void ExitApp_Click(object sender, System.EventArgs e)<br />
{<br />
aAppIcon.Dispose();<br />
Application.Exit();<br />
}<br />
}<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=37&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2009/03/27/programm-als-symbol-im-infobereich-anzeigen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Compare Funktion</title>
		<link>http://buettsenmann.wordpress.com/2008/11/24/compare-funktion/</link>
		<comments>http://buettsenmann.wordpress.com/2008/11/24/compare-funktion/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 09:56:54 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[C# Beispiele]]></category>
		<category><![CDATA[generic]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=33</guid>
		<description><![CDATA[Zwei Instanzen desselben Typs werden auf einfache Art und Weise miteinander verglichen: public static bool Between&#60;T&#62;(T value, T low, T high) where T : IComparable { return (Comparer&#60;T&#62;.Default.Compare(low, value) &#60;= 0 &#38;&#38; Comparer&#60;T&#62;.Default.Compare(high, value) &#62;= 0); }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=33&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Zwei Instanzen desselben Typs werden auf einfache Art und Weise miteinander verglichen:</p>
<p>public static bool Between&lt;T&gt;(T value, T low, T high) where T : IComparable<br />
{<br />
return (Comparer&lt;T&gt;.Default.Compare(low, value) &lt;= 0<br />
&amp;&amp; Comparer&lt;T&gt;.Default.Compare(high, value) &gt;= 0);<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=33&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/11/24/compare-funktion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Dictionary mit eigener Key Abfrage</title>
		<link>http://buettsenmann.wordpress.com/2008/08/21/dictionary-mit-eigener-key-abfrage/</link>
		<comments>http://buettsenmann.wordpress.com/2008/08/21/dictionary-mit-eigener-key-abfrage/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 07:46:49 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[C# Beispiele]]></category>
		<category><![CDATA[Dictionary]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=30</guid>
		<description><![CDATA[Das Dictionary ist eine feine Sache, jedoch kommt es vor, dass man einen Key verwendet, der aus einer Klasse mit mehreren membern besteht. Um nun nicht dieselbe Instanz, sondern den Inhalt der Member zu vergleichen, muss man in der Klasse die GetHashcode(..) Funktion überschreiben. Und das geht so.. In der folgenden Word Datei ist beschrieben, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=30&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Das Dictionary ist eine feine Sache, jedoch kommt es vor, dass man einen Key verwendet, der aus einer Klasse mit mehreren membern besteht. Um nun nicht dieselbe Instanz, sondern den Inhalt der Member zu vergleichen, muss man in der Klasse die GetHashcode(..) Funktion überschreiben. Und das geht so..<span id="more-30"></span></p>
<p>In der folgenden Word Datei ist beschrieben, wie codiert werden muss:</p>
<p><a href="http://buettsenmann.files.wordpress.com/2008/08/custom-dictionary-key.doc">custom-dictionary-key</a></p>
<p>Feine Sache!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=30&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/08/21/dictionary-mit-eigener-key-abfrage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Versionstolerante Serialisierung</title>
		<link>http://buettsenmann.wordpress.com/2008/06/04/versionstolerante-serialisierung/</link>
		<comments>http://buettsenmann.wordpress.com/2008/06/04/versionstolerante-serialisierung/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 08:29:45 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[hilfreiches]]></category>
		<category><![CDATA[Serialisieren]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=29</guid>
		<description><![CDATA[Mit der Zeit kommen z.B. Eigenschaften zu einer serialisierten Klasse hinzu oder ändern sich. Um eine Kompatibilität zwischen den verschiedenen Versionen zu gewährleisten, benutzt man die Version Tolerant Serialization.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=29&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mit der Zeit kommen z.B. Eigenschaften zu einer serialisierten Klasse hinzu oder ändern sich. Um eine Kompatibilität zwischen den verschiedenen Versionen zu gewährleisten, benutzt man die <a href="http://msdn.microsoft.com/de-de/library/ms229752(VS.80).aspx">Version Tolerant Serialization</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=29&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/06/04/versionstolerante-serialisierung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable DataGridView Cell</title>
		<link>http://buettsenmann.wordpress.com/2008/05/20/disable-datagridview-cell/</link>
		<comments>http://buettsenmann.wordpress.com/2008/05/20/disable-datagridview-cell/#comments</comments>
		<pubDate>Tue, 20 May 2008 14:46:38 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[hilfreiches]]></category>
		<category><![CDATA[DataGridView]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=27</guid>
		<description><![CDATA[Man kann eine Zelle im DataGridView Control leider nicht einfach &#8216;ausschalten&#8217; wie man das auf die folgende Art am liebsten machen würde, da diese Funktion im DataGridView nicht unterstützt wird. int theNewIndex = mydataGridView.Rows.Add(); DataGridViewRow theRow = mydataGridView.Rows[theewIndex]; theRow.Cells[myNameColumn.Name].Visible = false; Am Beispiel eines DataGridViewButtonCell Typs beschreibe ich hier wie es trotzdem geht: Die DataGridViewButtonCell [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=27&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Man kann eine Zelle im DataGridView Control leider nicht einfach &#8216;ausschalten&#8217; wie man das auf die folgende Art am liebsten machen würde, da diese Funktion im DataGridView nicht unterstützt wird.</p>
<pre>int theNewIndex = mydataGridView.Rows.Add();
DataGridViewRow theRow = mydataGridView.Rows[theewIndex];
theRow.Cells[myNameColumn.Name].Visible = false;</pre>
<p><span id="more-27"></span></p>
<p>Am Beispiel eines DataGridViewButtonCell Typs beschreibe ich hier wie es trotzdem geht:<br />
Die <span style="font-size:10pt;">DataGridViewButtonCell</span><span style="font-size:10pt;"> </span>Klasse muss überschrieben und als neuen Zelleninhalt eingefügt werden.</p>
<p>Hier die Klasse -&gt; <a href="http://buettsenmann.files.wordpress.com/2008/05/mydatagridviewbuttoncell.doc">mydatagridviewbuttoncell</a></p>
<p>Und so wird sie angewendet:</p>
<pre>int theNewIndex = mydataGridView.Rows.Add();
DataGridViewRow theRow = mydataGridView.Rows[theewIndex];
MyDataGridViewButtonCell theCell = new MyDataGridViewButtonCell();
theCell.Enabled = false;
theRow.Cells[myNameColumn.Name] = theCell;</pre>
<p>Wenn man einen Button z.B. abfangen möchte, muss man das CellClickEvent abfangen. An dieser Stelle ist es nun möglich den Typ des Zelleninhalts abzufangen:</p>
<pre>void mydataGridView_CellClick(object sender, DataGridViewCellEventArgs e)
{
 //Check if the Button is a Disabled one
 MyDataGridViewButtonCell theCell = mydataGridView[e.ColumnIndex, e.RowIndex] as MyDataGridViewButtonCell;
 if (theCell != null)
 {
    if (!theCell.Enabled)
    {
       //the Cell is disabled!
       return;
    }
  ....
 }</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=27&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/05/20/disable-datagridview-cell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>zusammengesetzter Value für z.B. ComboBox</title>
		<link>http://buettsenmann.wordpress.com/2008/05/08/zusammengesetzter-value-fur-zb-combobox/</link>
		<comments>http://buettsenmann.wordpress.com/2008/05/08/zusammengesetzter-value-fur-zb-combobox/#comments</comments>
		<pubDate>Thu, 08 May 2008 11:37:22 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[C# Beispiele]]></category>
		<category><![CDATA[ComboBox Display]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=19</guid>
		<description><![CDATA[Der DisplayValue einer ComboBox kann aus mehreren Zeilen einer Tabelle bestehen. Z.B. wäre Firstname Lastname ganz sinnvoll. Dazu folgende Codevorlage: zusammengesetzter-value<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=19&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Der DisplayValue einer ComboBox kann aus mehreren Zeilen einer Tabelle bestehen. Z.B. wäre Firstname Lastname ganz sinnvoll.</p>
<p>Dazu folgende Codevorlage:<span id="more-19"></span></p>
<p><a href="http://buettsenmann.files.wordpress.com/2008/05/zusammengesetzter-value.doc">zusammengesetzter-value</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=19&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/05/08/zusammengesetzter-value-fur-zb-combobox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Überblick MS Zertifizierung</title>
		<link>http://buettsenmann.wordpress.com/2008/05/08/uberblick-ms-zertifizierung/</link>
		<comments>http://buettsenmann.wordpress.com/2008/05/08/uberblick-ms-zertifizierung/#comments</comments>
		<pubDate>Thu, 08 May 2008 11:30:39 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[Zertifizierung]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=18</guid>
		<description><![CDATA[Die sind die neuen VS2008 Zertifizierungen: MCTS certifications on Visual Studio 2008: MCTS: .NET Framework 3.5, Windows Presentation Foundation Applications MCTS: .NET Framework 3.5, Windows Communication Foundation Applications MCTS: .NET Framework 3.5, Windows Workflow Foundation Applications MCTS: .NET Framework 3.5, Windows Forms Applications MCTS: .NET Framework 3.5, ADO.NET Applications MCTS: .NET Framework 3.5, ASP.NET Applications [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=18&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Die sind die neuen VS2008 Zertifizierungen:<span id="more-18"></span></p>
<p class="blurb"><span style="color:#808080;"><strong>MCTS certifications on Visual Studio 2008:</strong></span></p>
<p><a href="http://www.microsoft.com/learning/exams/70-502.mspx" target="_blank"><span style="color:#808080;"><span class="listLink">MCTS: .NET Framework 3.5, Windows Presentation Foundation Applications</span></span></a><br />
<a href="http://www.microsoft.com/learning/exams/70-503.mspx" target="_blank"><span style="color:#808080;"><span class="listLink">MCTS: .NET Framework 3.5, Windows Communication Foundation Applications</span></span></a><br />
<a href="http://www.microsoft.com/learning/exams/70-504.mspx" target="_blank"><span style="color:#808080;"><span class="listLink">MCTS: .NET Framework 3.5, Windows Workflow Foundation Applications</span></span></a><br />
<a href="http://www.microsoft.com/learning/exams/70-505.mspx" target="_blank"><span style="color:#808080;"><span class="listLink">MCTS: .NET Framework 3.5, Windows Forms Applications</span></span></a><br />
<a href="http://www.microsoft.com/learning/exams/70-561.mspx" target="_blank"><span style="color:#808080;"><span class="listLink">MCTS: .NET Framework 3.5, ADO.NET Applications</span></span></a><br />
<a href="http://www.microsoft.com/learning/exams/70-562.mspx" target="_blank"><span style="color:#808080;"><span class="listLink">MCTS: .NET Framework 3.5, ASP.NET Applications</span></span></a></p>
<p><span style="color:#000000;">Um eine dieser Zertifizierungen absolvieren zu können, benötigt man die </span><span style="color:#000000;">Zertifizierung</span></p>
<p><a href="http://www.microsoft.com/learning/exams/70-536.mspx" target="_blank"><span style="color:#808080;">Microsoft .NET Framework 2.0—Application Development Foundation</span></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=18&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/05/08/uberblick-ms-zertifizierung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Singleton</title>
		<link>http://buettsenmann.wordpress.com/2008/05/07/singleton/</link>
		<comments>http://buettsenmann.wordpress.com/2008/05/07/singleton/#comments</comments>
		<pubDate>Wed, 07 May 2008 10:44:38 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[C# Beispiele]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=15</guid>
		<description><![CDATA[Ein Snippet, dass den Rumpf einer Singleton Klasse darstellt. Dieses Singelton ist Threadsafe! &#62;&#62; singleton<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=15&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#808080;">Ein Snippet, dass den Rumpf einer Singleton Klasse darstellt. Dieses Singelton ist Threadsafe!</span><span id="more-15"></span></p>
<p><span style="color:#808080;">&gt;&gt; <a href="http://buettsenmann.files.wordpress.com/2008/05/singleton.pdf">singleton</a></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=15&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/05/07/singleton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Check User Activity</title>
		<link>http://buettsenmann.wordpress.com/2008/05/07/check-user-activity/</link>
		<comments>http://buettsenmann.wordpress.com/2008/05/07/check-user-activity/#comments</comments>
		<pubDate>Wed, 07 May 2008 10:41:49 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[C# Beispiele]]></category>
		<category><![CDATA[IO]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=14</guid>
		<description><![CDATA[Klasse die Mouse und Key Events global abfängt. Man ist nicht mehr auf die Form beschränkt!! Als EventArgs bekommt man sogar die orginal C#.Net Eigenschaften &#62;&#62;useractivity<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=14&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#808080;">Klasse die Mouse und Key Events global abfängt. Man ist nicht mehr auf die Form beschränkt!!</span></p>
<p><span style="color:#808080;">Als EventArgs bekommt man sogar die orginal C#.Net Eigenschaften</span><span id="more-14"></span></p>
<p><span style="color:#808080;">&gt;&gt;<a href="http://buettsenmann.files.wordpress.com/2008/05/useractivity.doc">useractivity</a></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=14&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/05/07/check-user-activity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
		<item>
		<title>Serializable Dictionary</title>
		<link>http://buettsenmann.wordpress.com/2008/05/07/serializable-dictionary/</link>
		<comments>http://buettsenmann.wordpress.com/2008/05/07/serializable-dictionary/#comments</comments>
		<pubDate>Wed, 07 May 2008 10:36:47 +0000</pubDate>
		<dc:creator>camelord</dc:creator>
				<category><![CDATA[C# Beispiele]]></category>
		<category><![CDATA[Serialisieren]]></category>

		<guid isPermaLink="false">http://buettsenmann.wordpress.com/?p=13</guid>
		<description><![CDATA[Spezielles Dictionary, dass sich serialisieren lässt Ansonsten wie das .NET Dictionary &#62;&#62;serializabledictionary<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=13&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000000;"><span style="color:#808080;">Spezielles Dictionary, dass sich serialisieren lässt</span></span></p>
<p><span style="color:#000000;"><span style="color:#808080;">Ansonsten wie das .NET Dictionary</span></span></p>
<p><span id="more-13"></span></p>
<p><span style="color:#808080;">&gt;&gt;<a href="http://buettsenmann.files.wordpress.com/2008/05/serializabledictionary.doc">serializabledictionary</a></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buettsenmann.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buettsenmann.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buettsenmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buettsenmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buettsenmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buettsenmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buettsenmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buettsenmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buettsenmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buettsenmann.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buettsenmann.wordpress.com&amp;blog=3659910&amp;post=13&amp;subd=buettsenmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buettsenmann.wordpress.com/2008/05/07/serializable-dictionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8c707855f5e867e828c6c7a8f0a63944?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">camelord</media:title>
		</media:content>
	</item>
	</channel>
</rss>
