<?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 .Net</title>
	<atom:link href="http://www.livewithdotnet.com/category/c-sharp-net/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>Get Maximum duplicated value in a array list</title>
		<link>http://www.livewithdotnet.com/get-maximum-duplicated-value-in-a-array-list/</link>
		<comments>http://www.livewithdotnet.com/get-maximum-duplicated-value-in-a-array-list/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 16:14:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=56</guid>
		<description><![CDATA[The below code give you the Maximum Value with have duplicated in the provided Array of Integer.
I have used Hashtable and try to Sort the Hashtable by Value instead of Key and get the respective Key of the maximum value data.

public class Testing {
        //Type 1
   [...]]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/get-maximum-duplicated-value-in-a-array-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send Meeting Request using Smtp methods</title>
		<link>http://www.livewithdotnet.com/send-meeting-request-using-smtp-methods/</link>
		<comments>http://www.livewithdotnet.com/send-meeting-request-using-smtp-methods/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 14:12:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>
		<category><![CDATA[Meeting]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[request]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=55</guid>
		<description><![CDATA[Below code will help to send a meeting request to the give attendees. It is dynamicaly creating the .ics file which is hidden properties structure file for any appointment / calendar type action in Outlook.
Onces send the attendees will see the meeting requested in the mailbox and in their calendar after accepting. The code is [...]]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/send-meeting-request-using-smtp-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculate Standard Deviation for the given data points</title>
		<link>http://www.livewithdotnet.com/calculate-standard-deviation-for-the-given-data-points/</link>
		<comments>http://www.livewithdotnet.com/calculate-standard-deviation-for-the-given-data-points/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 13:50:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>
		<category><![CDATA[Population]]></category>
		<category><![CDATA[Save Divide]]></category>
		<category><![CDATA[Standard Deviation]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=54</guid>
		<description><![CDATA[Below code will give us the Standard Deviation for the list data (double type) provided.
You need to be carefully in handle 'Divide by zero' error. 
Formulae for the Standard Deviation:

Code here :

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/// &#60;summary&#62;
        /// Return the Standard Deviation for the provide set of data array to the calling [...]]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/calculate-standard-deviation-for-the-given-data-points/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send mail using smtpclient</title>
		<link>http://www.livewithdotnet.com/how-to-send-mail-using-smtpclient/</link>
		<comments>http://www.livewithdotnet.com/how-to-send-mail-using-smtpclient/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 09:41:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[Net Mail]]></category>
		<category><![CDATA[relay]]></category>
		<category><![CDATA[send mail]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=47</guid>
		<description><![CDATA[You can create a Mail Message dynamically and send the mail to recepient list through smtp client. You need to use System.Net.Mail to use the smtp client class.

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System.Configuration;
using System.Net.Mail;
&#160;
        public static bool SendMailNotification&#40;&#41;
        &#123;
       [...]]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/how-to-send-mail-using-smtpclient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
	</channel>
</rss>
