<?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>CodeHill &#187; Mono 2.0</title>
	<atom:link href="http://codehill.com/category/mono-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://codehill.com</link>
	<description>Resources for webmasters and web developers</description>
	<lastBuildDate>Sat, 24 Jul 2010 10:59:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Simple Networking Tasks in C#</title>
		<link>http://codehill.com/2009/03/simple-networking-tasks-in-c/</link>
		<comments>http://codehill.com/2009/03/simple-networking-tasks-in-c/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:00:28 +0000</pubDate>
		<dc:creator>Amgad</dc:creator>
				<category><![CDATA[Mono 2.0]]></category>
		<category><![CDATA[WinForms]]></category>
		<category><![CDATA[DNS Lookup]]></category>
		<category><![CDATA[Download File]]></category>
		<category><![CDATA[Ping]]></category>

		<guid isPermaLink="false">http://codehill.com/?p=608</guid>
		<description><![CDATA[Developing applications in C# that access resource on the internet is easy. This post shows four useful functions: checking if the PC is connected to a network, domain name to IP address lookup, ping a host and download a file. &#160; Network Availability You can check if there are any network connections using NetworkInterface.GetIsNetworkAvailable static [...]


Related posts:<ol><li><a href='http://codehill.com/2009/03/a-wrapper-class-for-hostipinfos-geolocation-service/' rel='bookmark' title='Permanent Link: A Wrapper Class For hostip.info&#8217;s GeoLocation Service'>A Wrapper Class For hostip.info&#8217;s GeoLocation Service</a></li>
<li><a href='http://codehill.com/2009/03/get-the-available-network-connections-using-wmi/' rel='bookmark' title='Permanent Link: Get the Available Network Connections Using WMI'>Get the Available Network Connections Using WMI</a></li>
<li><a href='http://codehill.com/2009/01/lock-sleep-or-hibernate-windows-using-c/' rel='bookmark' title='Permanent Link: Lock, Sleep or Hibernate Windows using C#'>Lock, Sleep or Hibernate Windows using C#</a></li>
</ol>]]></description>
		<wfw:commentRss>http://codehill.com/2009/03/simple-networking-tasks-in-c/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>A Wrapper Class For hostip.info&#8217;s GeoLocation Service</title>
		<link>http://codehill.com/2009/03/a-wrapper-class-for-hostipinfos-geolocation-service/</link>
		<comments>http://codehill.com/2009/03/a-wrapper-class-for-hostipinfos-geolocation-service/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 14:00:21 +0000</pubDate>
		<dc:creator>Amgad</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Mono 2.0]]></category>
		<category><![CDATA[Mono XSP 2.0]]></category>
		<category><![CDATA[WinForms]]></category>
		<category><![CDATA[GeoLocation]]></category>
		<category><![CDATA[hostip.info]]></category>

		<guid isPermaLink="false">http://codehill.com/?p=587</guid>
		<description><![CDATA[GeoLocation refers to identifying a real-world geographic location of a computer, device or website visitor. There are a many websites that provide this service, some are free and some are not. A populare and free one is hostip.info. It provides country, country code, country flag, city, latitude and longitude of an IP address. This wrapper [...]


Related posts:<ol><li><a href='http://codehill.com/2009/02/2-or-more-domain-names-linked-to-the-same-folder/' rel='bookmark' title='Permanent Link: 2 or More Domain Names Linked to the Same Folder'>2 or More Domain Names Linked to the Same Folder</a></li>
<li><a href='http://codehill.com/2008/12/an-md5-hash-of-a-string/' rel='bookmark' title='Permanent Link: An MD5 Hash of a String'>An MD5 Hash of a String</a></li>
<li><a href='http://codehill.com/2009/03/displaying-an-xml-file-in-a-treeview-control/' rel='bookmark' title='Permanent Link: Displaying an XML File in a TreeView Control'>Displaying an XML File in a TreeView Control</a></li>
</ol>]]></description>
		<wfw:commentRss>http://codehill.com/2009/03/a-wrapper-class-for-hostipinfos-geolocation-service/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get a Movie&#8217;s Details From IMDb</title>
		<link>http://codehill.com/2009/02/get-a-movies-details-from-imdb/</link>
		<comments>http://codehill.com/2009/02/get-a-movies-details-from-imdb/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 14:00:28 +0000</pubDate>
		<dc:creator>Amgad</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Mono 2.0]]></category>
		<category><![CDATA[WinForms]]></category>
		<category><![CDATA[IMDb]]></category>
		<category><![CDATA[Regular Expressions]]></category>
		<category><![CDATA[Screen Scraping]]></category>

		<guid isPermaLink="false">http://codehill.com/?p=501</guid>
		<description><![CDATA[A while back when I was developing MoviePlay (a movies database) I wanted to allow the user to get the movie&#8217;s details from IMDb (The Internet Movie Database) instead of having him/her enter it manually. IMDb does not provide a way for developers to use their data, so I wrote the code below to screen [...]


Related posts:<ol><li><a href='http://codehill.com/2008/12/get-a-video-files-details-using-windows/' rel='bookmark' title='Permanent Link: Get a Video File&#8217;s Details Using Windows'>Get a Video File&#8217;s Details Using Windows</a></li>
<li><a href='http://codehill.com/2009/02/dictionaries-of-html-codes/' rel='bookmark' title='Permanent Link: Dictionaries of HTML Codes'>Dictionaries of HTML Codes</a></li>
<li><a href='http://codehill.com/2009/01/how-to-download-a-web-page-in-winforms/' rel='bookmark' title='Permanent Link: How to Download a Web Page in WinForms'>How to Download a Web Page in WinForms</a></li>
</ol>]]></description>
		<wfw:commentRss>http://codehill.com/2009/02/get-a-movies-details-from-imdb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Reading and Writing Text Files in C#</title>
		<link>http://codehill.com/2009/01/reading-and-writing-text-files-in-c/</link>
		<comments>http://codehill.com/2009/01/reading-and-writing-text-files-in-c/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 14:00:12 +0000</pubDate>
		<dc:creator>Amgad</dc:creator>
				<category><![CDATA[Mono 2.0]]></category>
		<category><![CDATA[WinForms]]></category>
		<category><![CDATA[Text Files]]></category>

		<guid isPermaLink="false">http://www.codehill.com/?p=124</guid>
		<description><![CDATA[With all the DBMSs out there, text files are still widely used when developing applications. They are small, fast and do not require any library or application to be installed in the client machine. The System.IO.StreamReader and System.IO.StreamWriter are used to read and write text files to disk. The following code demonstrates reading a file [...]


Related posts:<ol><li><a href='http://codehill.com/2009/02/taking-thumbnails-of-a-website/' rel='bookmark' title='Permanent Link: Taking Thumbnails of a Website'>Taking Thumbnails of a Website</a></li>
<li><a href='http://codehill.com/2009/01/reading-excel-2003-and-2007-files-using-oledb/' rel='bookmark' title='Permanent Link: Reading Excel 2003 and 2007 Files Using OLEDB'>Reading Excel 2003 and 2007 Files Using OLEDB</a></li>
<li><a href='http://codehill.com/2009/01/how-to-download-a-web-page-in-winforms/' rel='bookmark' title='Permanent Link: How to Download a Web Page in WinForms'>How to Download a Web Page in WinForms</a></li>
</ol>]]></description>
		<wfw:commentRss>http://codehill.com/2009/01/reading-and-writing-text-files-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
