<?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>Marco's .NET Blog &#187; C#</title>
	<atom:link href="http://www.fulda-west.de/blog/category/csharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fulda-west.de/blog</link>
	<description>just about my work on .NET</description>
	<lastBuildDate>Thu, 10 Jun 2010 19:56:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>C# :: Assembly Version auslesen</title>
		<link>http://www.fulda-west.de/blog/2010/06/c-assembly-version/</link>
		<comments>http://www.fulda-west.de/blog/2010/06/c-assembly-version/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 06:50:38 +0000</pubDate>
		<dc:creator>mherbert</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.fulda-west.de/blog/?p=258</guid>
		<description><![CDATA[Die aktuelle Assembly-Version kann man wie folgt auslesen:
Windows-Forms-Anwendung
Application.Productversion
Windows-Service / DLL
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()
]]></description>
		<wfw:commentRss>http://www.fulda-west.de/blog/2010/06/c-assembly-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL :: ConnectionStrings jeder Art</title>
		<link>http://www.fulda-west.de/blog/2010/05/sql-connectionstrings-jeder-art/</link>
		<comments>http://www.fulda-west.de/blog/2010/05/sql-connectionstrings-jeder-art/#comments</comments>
		<pubDate>Tue, 25 May 2010 13:55:03 +0000</pubDate>
		<dc:creator>mherbert</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[asp.NET]]></category>

		<guid isPermaLink="false">http://www.fulda-west.de/blog/?p=254</guid>
		<description><![CDATA[Wer mal auf die Schnelle einen ConnectionString für einen Datenzugriff unter .NET braucht:
Auf dieser Webseite sind ConnStrings für jeden erdenklichen Zugriff zu finden&#8230;
http://www.connectionstrings.com
(Danke an Thomas Br. / Thomas G.)
]]></description>
		<wfw:commentRss>http://www.fulda-west.de/blog/2010/05/sql-connectionstrings-jeder-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# :: TIF Kompression einstellen</title>
		<link>http://www.fulda-west.de/blog/2010/02/c-tif-kompression-einstellen/</link>
		<comments>http://www.fulda-west.de/blog/2010/02/c-tif-kompression-einstellen/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 09:30:34 +0000</pubDate>
		<dc:creator>mherbert</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.fulda-west.de/blog/?p=224</guid>
		<description><![CDATA[Bei der Erstellung (Konvertierung) von TIF-Images kann man im Bereich der TIF-Kompression einiges einstellen. Allerdings bedarf es hier eines Encoders sowie einer EncoderInfo-Hilfsfunktion:
private static ImageCodecInfo GetEncoderInfo(string mimeType)
{
  ImageCodecInfo[] encoders;
  encoders = ImageCodecInfo.GetImageEncoders();
  for (int i = 0; i &#60; encoders.Length; i++)
    {
        if (encoders[i].MimeType == mimeType)
            return encoders[i];
    }
  return null;
}
Die eigentliche Umsetzung ist dann relativ [...]]]></description>
		<wfw:commentRss>http://www.fulda-west.de/blog/2010/02/c-tif-kompression-einstellen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# :: Countdown erstellen</title>
		<link>http://www.fulda-west.de/blog/2010/02/c-countdown-erstellen/</link>
		<comments>http://www.fulda-west.de/blog/2010/02/c-countdown-erstellen/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 10:00:51 +0000</pubDate>
		<dc:creator>mherbert</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.fulda-west.de/blog/?p=219</guid>
		<description><![CDATA[Um einen Countdown in Minuten und Sekunden (25:37&#8230;25:36&#8230;) auf einem Windows Form zu erstellen brauchen wir:
- ein Label (label1)
- einen Timer (timer1)
- eine kleine Funktion (ConvertToTime)
Erstmal zwei kleine Variablen:
long CountDownTime = 1800;
//Sekunden, die heruntergezählt werden
int CountDownAbgelaufen = 0
//Lässt den Countdown negativ weiterlaufen
Jetzt die Funktion, die uns ein Wert in das passende Format zurlegt:
public string ConvertToTime(long tickCount)
{
   long [...]]]></description>
		<wfw:commentRss>http://www.fulda-west.de/blog/2010/02/c-countdown-erstellen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# :: Pfad zur ausgeführten DLL ermitteln</title>
		<link>http://www.fulda-west.de/blog/2010/01/c-pfad-zur-ausgefuehrten-dll-ermitteln/</link>
		<comments>http://www.fulda-west.de/blog/2010/01/c-pfad-zur-ausgefuehrten-dll-ermitteln/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 07:03:42 +0000</pubDate>
		<dc:creator>mherbert</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.fulda-west.de/blog/?p=211</guid>
		<description><![CDATA[Während man innerhalb einer Windows-Forms-Anwendung den aktuellen Pfad zur EXE-Datei über
Application.StartupPath;
abrufen kann, steht diese Funktion in einer DLL nicht zur Verfügung, da der Namespace System.Windows.Forms natürlich nicht genutzt werden kann&#8230;
Hier hilft diese Syntax:
typeof(MyClassName).Assembly.Location;
]]></description>
		<wfw:commentRss>http://www.fulda-west.de/blog/2010/01/c-pfad-zur-ausgefuehrten-dll-ermitteln/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
