<?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>Sachin Jain &#187; C#</title>
	<atom:link href="http://www.sachinjain.me/category/c-sharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sachinjain.me</link>
	<description>IT Professional - MCA, MBA</description>
	<lastBuildDate>Thu, 20 May 2010 15:07:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>3 Key new features in .net 4.0</title>
		<link>http://www.sachinjain.me/2010/05/3-key-new-features-in-net-4-0/</link>
		<comments>http://www.sachinjain.me/2010/05/3-key-new-features-in-net-4-0/#comments</comments>
		<pubDate>Thu, 20 May 2010 10:04:42 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=160</guid>
		<description><![CDATA[






Following are the 3 new Key features in .net 4.0
1) Windows work flow and WCF 4.0:- This is a major change in 4.0.
In WCF they have given following features :-


 Dynamic Service and End Point discovery &#8211; The problem was faced in earlier version of WCF that if theend point has been changed at service [...]]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2010/05/3-key-new-features-in-net-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom application error tracking through global.asax file</title>
		<link>http://www.sachinjain.me/2009/10/custom-application-error-tracking-through-global-asax-file/</link>
		<comments>http://www.sachinjain.me/2009/10/custom-application-error-tracking-through-global-asax-file/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 14:04:11 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Error Tracking]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=111</guid>
		<description><![CDATA[Custom application error tracking through global.asax file. Here you can track querystrings, post data and whole exception message with url]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/custom-application-error-tracking-through-global-asax-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Naming Conventions and Standards &#8211; C#</title>
		<link>http://www.sachinjain.me/2009/10/naming-conventions-and-standards-csharp/</link>
		<comments>http://www.sachinjain.me/2009/10/naming-conventions-and-standards-csharp/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 11:20:31 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=79</guid>
		<description><![CDATA[1) Use Pascal casing for type and method names and constants:
public class YourClass 
{ 
   const int ConstantVariable = 100; 
   public YourMethod( ) 
   {} 
} 

2) Use camel casing for local variable names and method arguments. Use p prefix for parameterized vairables:
int intNumber; 
void MyMethod(int pintNumber) 
{} 
]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/naming-conventions-and-standards-csharp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Generate Paging &#8211; Custom function</title>
		<link>http://www.sachinjain.me/2009/10/generate-paging-custom-function/</link>
		<comments>http://www.sachinjain.me/2009/10/generate-paging-custom-function/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 11:03:58 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[paging]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=77</guid>
		<description><![CDATA[Here it goes

private int mstrPageSize = 1;
    private int mstrTotalRecords = 1;
    private int mstrCurrentPage = 1;



    public int PageSize
    {
        get
        {
            return mstrPageSize;
        }]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/generate-paging-custom-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading event log &#8211; Only exception part</title>
		<link>http://www.sachinjain.me/2009/10/reading-event-log-only-exception-part/</link>
		<comments>http://www.sachinjain.me/2009/10/reading-event-log-only-exception-part/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 10:44:31 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Event log]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=74</guid>
		<description><![CDATA[Here is the few line code


        try
        {
            int intCount = 1;
            EventLog EventLog1 = new EventLog();
            EventLog1.Log = "Application"]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/reading-event-log-only-exception-part/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between interface and  abstract classes</title>
		<link>http://www.sachinjain.me/2009/10/difference-between-interface-and-abstract-classes/</link>
		<comments>http://www.sachinjain.me/2009/10/difference-between-interface-and-abstract-classes/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 15:11:55 +0000</pubDate>
		<dc:creator>Sachin Jain</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[abstract class]]></category>
		<category><![CDATA[interface]]></category>

		<guid isPermaLink="false">http://www.sachinjain.me/?p=46</guid>
		<description><![CDATA[Following are the 6 differences between abstract classes and interfaces :-
1) A class can implement as many interfaces, but an subclass at most one abstract class.
]]></description>
		<wfw:commentRss>http://www.sachinjain.me/2009/10/difference-between-interface-and-abstract-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
