<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>NerdInterview.com</title>
	<link>http://nerdinterview.com</link>
	<description>Jobs Updated Everyday</description>
	<pubDate>Sat, 30 Aug 2008 07:37:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Does C# support multiple-inheritance?</title>
		<link>http://nerdinterview.com/c-sharp-questions/does-c-sharp-support-multiple-nheritance/</link>
		<comments>http://nerdinterview.com/c-sharp-questions/does-c-sharp-support-multiple-nheritance/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 18:04:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C# Interview Questions]]></category>

		<guid isPermaLink="false">http://nerdinterview.com/c-sharp-questions/does-c-sharp-support-multiple-nheritance/</guid>
		<description><![CDATA[No.
Who is a protected class-level variable available to? 
It is available to any sub-class (a class inheriting this class).


  addthis_url    = 'http%3A%2F%2Fnerdinterview.com%2Fc-sharp-questions%2Fdoes-c-sharp-support-multiple-nheritance%2F';
  addthis_title  = 'Does+C%23+support+multiple-inheritance%3F';
  addthis_pub    = 'leopez';

]]></description>
		<wfw:commentRss>http://nerdinterview.com/c-sharp-questions/does-c-sharp-support-multiple-nheritance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How can you clean up objects holding resources from within the code?</title>
		<link>http://nerdinterview.com/c-sharp-questions/how-can-you-clean-up-objects-holding-resources-from-within-the-code/</link>
		<comments>http://nerdinterview.com/c-sharp-questions/how-can-you-clean-up-objects-holding-resources-from-within-the-code/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 18:03:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C# Interview Questions]]></category>

		<guid isPermaLink="false">http://nerdinterview.com/c-sharp-questions/how-can-you-clean-up-objects-holding-resources-from-within-the-code/</guid>
		<description><![CDATA[Call the dispose method from code for clean up of objects 
Which controls do not have events? 
Timer control. 
What is the maximum size of the textbox? 
65536. 
Which property of the textbox cannot be changed at runtime? 
Locked Property. 
Which control cannot be placed in MDI? 
The controls that do not have events. 
What [...]]]></description>
		<wfw:commentRss>http://nerdinterview.com/c-sharp-questions/how-can-you-clean-up-objects-holding-resources-from-within-the-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Describe ways of cleaning up objects.</title>
		<link>http://nerdinterview.com/c-sharp-questions/describe-ways-of-cleaning-up-objects/</link>
		<comments>http://nerdinterview.com/c-sharp-questions/describe-ways-of-cleaning-up-objects/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 18:03:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C# Interview Questions]]></category>

		<guid isPermaLink="false">http://nerdinterview.com/c-sharp-questions/describe-ways-of-cleaning-up-objects/</guid>
		<description><![CDATA[Answer1
There is a perfect tool provide by .net frameworks calls Garbage collector, where by mean of GC we can clean up the object and reclaim the memory. The namespace used is System.GC 
Answer2
the run time will maintain a service called as garbage collector. This service will take care of deallocating memory corresponding to objects. it [...]]]></description>
		<wfw:commentRss>http://nerdinterview.com/c-sharp-questions/describe-ways-of-cleaning-up-objects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Explain constructor.</title>
		<link>http://nerdinterview.com/c-sharp-questions/explain-constructor/</link>
		<comments>http://nerdinterview.com/c-sharp-questions/explain-constructor/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 18:02:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C# Interview Questions]]></category>

		<guid isPermaLink="false">http://nerdinterview.com/c-sharp-questions/explain-constructor/</guid>
		<description><![CDATA[Constructor is a method in the class which has the same name as the class (in VB.Net its New()). It initializes the member attributes whenever an instance of the class is created.

  addthis_url    = 'http%3A%2F%2Fnerdinterview.com%2Fc-sharp-questions%2Fexplain-constructor%2F';
  addthis_title  = 'Explain+constructor.';
  addthis_pub    = 'leopez';

]]></description>
		<wfw:commentRss>http://nerdinterview.com/c-sharp-questions/explain-constructor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Difference between value and reference type. what are value types and reference types?</title>
		<link>http://nerdinterview.com/c-sharp-questions/difference-between-value-and-reference-type-what-are-value-types-and-reference-types/</link>
		<comments>http://nerdinterview.com/c-sharp-questions/difference-between-value-and-reference-type-what-are-value-types-and-reference-types/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 18:02:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C# Interview Questions]]></category>

		<guid isPermaLink="false">http://nerdinterview.com/c-sharp-questions/difference-between-value-and-reference-type-what-are-value-types-and-reference-types/</guid>
		<description><![CDATA[Value type - bool, byte, chat, decimal, double, enum , float, int, long, sbyte, short, strut, uint, ulong, ushort
Value types are stored in the Stack
Reference type - class, delegate, interface, object, string
Reference types are stored in the Heap

  addthis_url    = 'http%3A%2F%2Fnerdinterview.com%2Fc-sharp-questions%2Fdifference-between-value-and-reference-type-what-are-value-types-and-reference-types%2F';
  addthis_title  = 'Difference+between+value+and+reference+type.+what+are+value+types+and+reference+types%3F';
  addthis_pub    [...]]]></description>
		<wfw:commentRss>http://nerdinterview.com/c-sharp-questions/difference-between-value-and-reference-type-what-are-value-types-and-reference-types/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
