<?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>Interview Questions &#187; C Sharp</title>
	<atom:link href="http://www.phpinterviewquestion.com/category/net_interview-questions/c-sharp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phpinterviewquestion.com</link>
	<description>Interview Questions</description>
	<lastBuildDate>Sun, 27 Nov 2011 16:32:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Difference between event and delegate?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-event-and-delegate</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-event-and-delegate#comments</comments>
		<pubDate>Wed, 09 Mar 2011 10:05:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C Sharp]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=952</guid>
		<description><![CDATA[event: 1) It is a data member of a type(class/structure) 2)It is declared inside a type(class/structure) 3) It is used to generate notifications which are then passed to methods though delegates. delegate: 1)It is a datatype(reference type) that holds references of methods with some signatures.also called as function pointer. 2)It may or may not be [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-event-and-delegate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why the Main() method is static?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/why-the-main-method-is-static</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/why-the-main-method-is-static#comments</comments>
		<pubDate>Wed, 09 Mar 2011 10:00:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C Sharp]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=949</guid>
		<description><![CDATA[The Main() method serves as the entry point of the code.It is automatically loaded and initialised by the CLR when the class loader in the CLR loads the class.If it were not static, an extra object of the class has to be created, that would increase the memory overhead. . The other reason for being [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/why-the-main-method-is-static/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between String and string in c#?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-string-and-string-in-c</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-string-and-string-in-c#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:52:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C Sharp]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=946</guid>
		<description><![CDATA[String: 1.String is an class(System.String) 2.String is an Reference type(class) string: 1.string is an alias name of String class that is created by microsoft 2.string is an value type(data type) 3.string is a C# keyword 4.string is a compiler shortcut for System.String class As per above points when we use string keyword, it reaches the [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-string-and-string-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Value Types versus Reference Types?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-is-value-types-versus-reference-types</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-is-value-types-versus-reference-types#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:50:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C Sharp]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=944</guid>
		<description><![CDATA[The Value Types which includes types,char types and bool types as well as the custom struct and enum types. The content of a Value Type variable is simply a value. But in case of Reference Types, it includes all classes, array, interface, and delegate types. This is quite different from value type. It contains two [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-is-value-types-versus-reference-types/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between typeof and Type.GetType</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-typeof-and-type-gettype</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-typeof-and-type-gettype#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:46:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C Sharp]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=940</guid>
		<description><![CDATA[typeof and Type.GetType both help us to get Type Information using Reflection. Differences: typeof: 1)typeof expects only an existent typename. 2)Namespace reference is not needed. 3)typename is verified at the compile time itself ex: Type t=typeof(Program); Type.GetType 1))we have to specify a typename, which will be cheapest checked at runtime only. if it does not [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-typeof-and-type-gettype/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.phpinterviewquestion.com @ 2012-02-06 07:27:54 -->
