<?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; .NET</title>
	<atom:link href="http://www.phpinterviewquestion.com/category/net_interview-questions/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>Differences between method overloading and method overriding</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/differences-between-method-overloading-and-method-overriding</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/differences-between-method-overloading-and-method-overriding#comments</comments>
		<pubDate>Thu, 10 Mar 2011 08:04:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=958</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/differences-between-method-overloading-and-method-overriding/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can abstract class have constructors?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/can-abstract-class-have-constructors</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/can-abstract-class-have-constructors#comments</comments>
		<pubDate>Wed, 09 Mar 2011 10:14:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=955</guid>
		<description><![CDATA[Yes, an abstract class does have a constructor. It will be called when it subclass is instantiated. example: abstract class bank { public bank() { Console.WriteLine("bank"); } } class pnb : bank { pnb() { Console.WriteLine("pnb"); } static void Main() { bank b = new pnb(); } } //Output: when the object of  pnb  class [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/can-abstract-class-have-constructors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
		<item>
		<title>What is service host factory in WCF?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-is-service-host-factory-in-wcf</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-is-service-host-factory-in-wcf#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:43:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=937</guid>
		<description><![CDATA[1. Service host factory is the mechanism by which we can create the instances of service host dynamically as the request comes in. 2.This is useful when we need to implement the event handlers for opening and closing the service. 3. WCF provides ServiceFactory class for this purpose.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-is-service-host-factory-in-wcf/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the different platforms where we can host WCF service ?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-are-the-different-platforms-where-we-can-host-wcf-service</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-are-the-different-platforms-where-we-can-host-wcf-service#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:41:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=935</guid>
		<description><![CDATA[WCF Services can be hosted on following platforms 1. WAS(Windows Activation Service) 2. Self Hosting 3. IIS]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-are-the-different-platforms-where-we-can-host-wcf-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is WCF in .Net</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-is-wcf-in-net</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-is-wcf-in-net#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:39:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=932</guid>
		<description><![CDATA[Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCF provides a runtime environment for your services, enabling you to expose CLR types as services, and to consume other services as CLR types. Although in theory you could build services without WCF, in practice building services is significantly easier with [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-is-wcf-in-net/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between src and Code-Behind</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-src-and-code-behind</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-src-and-code-behind#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:29:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=929</guid>
		<description><![CDATA[SRC specifies the source file name of the code-behind class to dynamically compile when the page is requested. You can choose to include programming logic for your page either in a code-behind class or in a code declaration block in the .aspx file CODEBEHIND specifies the name of the compiled file that contains the class associated [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/difference-between-src-and-code-behind/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to manage pagination in a page?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/how-to-manage-pagination-in-a-page</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/how-to-manage-pagination-in-a-page#comments</comments>
		<pubDate>Tue, 08 Mar 2011 11:55:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=925</guid>
		<description><![CDATA[Using pagination option in DataGrid control. We have to set the number records for a page, then it takes care of pagination by itself.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/how-to-manage-pagination-in-a-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What methods are fired during the page load?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-methods-are-fired-during-the-page-load</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-methods-are-fired-during-the-page-load#comments</comments>
		<pubDate>Tue, 08 Mar 2011 11:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=923</guid>
		<description><![CDATA[When the page loads the Init() method is invoked which initializes the global variables and the page is instantiated then the Load() method is called to load the page into the server memory. Once the page is loaded into the server the page requires to be pre-rendered for a brief period of time before showing [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-methods-are-fired-during-the-page-load/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are Sealed Classes in C#?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-are-sealed-classes-in-c</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-are-sealed-classes-in-c#comments</comments>
		<pubDate>Tue, 08 Mar 2011 11:44:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=921</guid>
		<description><![CDATA[The sealed modifier is used to prevent derivation from a class. A compile-time error occurs if a sealed class is specified as the base class of another class. (A sealed class cannot also be an abstract class) .]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-are-sealed-classes-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Jagged Arrays?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-is-jagged-arrays</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-is-jagged-arrays#comments</comments>
		<pubDate>Tue, 08 Mar 2011 11:42:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=919</guid>
		<description><![CDATA[A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an “array-of-arrays.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-is-jagged-arrays/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Machine.config File ?</title>
		<link>http://www.phpinterviewquestion.com/net_interview-questions/what-is-machine-config-file</link>
		<comments>http://www.phpinterviewquestion.com/net_interview-questions/what-is-machine-config-file#comments</comments>
		<pubDate>Tue, 08 Mar 2011 11:39:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=916</guid>
		<description><![CDATA[As web.config file is used to configure one asp .net web application, same way Machine.config file is according to a particular machine. That is, configuration done in machine.configfile is affected on any application that runs on a particular machine. Usually, this file is not alteredand only web.config is used which configuring applications.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/net_interview-questions/what-is-machine-config-file/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:03:23 -->
