<?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>Live with Dot Net &#187; c sharp code</title>
	<atom:link href="http://www.livewithdotnet.com/tag/c-sharp-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.livewithdotnet.com</link>
	<description>Just another Programming weblog</description>
	<lastBuildDate>Sat, 24 Jul 2010 18:59:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>SQL Bulk Copy using SQL Server 2005</title>
		<link>http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/</link>
		<comments>http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 10:48:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>
		<category><![CDATA[DB Query]]></category>
		<category><![CDATA[c sharp code]]></category>
		<category><![CDATA[SQL Bulk Copy]]></category>
		<category><![CDATA[SQL Bulk Copy using SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=19</guid>
		<description><![CDATA[The below code help in copying a large amount of data from the local datastore to the sql server database.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
protected void Button11_Click&#40;object sender, EventArgs e&#41; 
&#123; 
ConnectionStringSettings pubs =    ConfigurationManager.ConnectionStrings&#91;&#34;PubsData&#34;&#93;; 
DbConnection connection =    new SqlConnection&#40;pubs.ConnectionString&#41;; ConnectionStringSettings bulkCopy =    ConfigurationManager.ConnectionStrings&#91;&#34;PubsData&#34;&#93;; 
SqlConnection bulkCopyConnection =   new SqlConnection&#40;bulkCopy.ConnectionString&#41;; [...]]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy Directory from the file system</title>
		<link>http://www.livewithdotnet.com/copy-directory-from-the-file-system/</link>
		<comments>http://www.livewithdotnet.com/copy-directory-from-the-file-system/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 18:46:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>
		<category><![CDATA[c sharp code]]></category>
		<category><![CDATA[copy directory]]></category>
		<category><![CDATA[Copy Directory from the file system]]></category>
		<category><![CDATA[file system]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=17</guid>
		<description><![CDATA[There is a missing class in the .net library to copy directory from the file system in the System.io namespace. The below code provide the functionality to copy directory to other location.
It needs two parameters source folders and the destination path.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public static void copyDirectory&#40;string Src, string Dst&#41;
        &#123;
 [...]]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/copy-directory-from-the-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
