<?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 Tips &#187; int</title>
	<atom:link href="http://tipsinterview.com/tag/int/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsinterview.com</link>
	<description>Interview Tips, Interview Questions and Answers</description>
	<lastBuildDate>Sun, 20 May 2012 05:16:12 +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>What are Object Initializers in C#</title>
		<link>http://tipsinterview.com/2011/05/28/what-are-object-initializers-in-c/</link>
		<comments>http://tipsinterview.com/2011/05/28/what-are-object-initializers-in-c/#comments</comments>
		<pubDate>Sat, 28 May 2011 05:45:36 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[aim]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[programming concepts]]></category>
		<category><![CDATA[Sample]]></category>
		<category><![CDATA[void]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=563</guid>
		<description><![CDATA[The Object initializers are the features for programming concepts which was introduced in C#.Net. The aim of using Object Initializers is to intializing the accessible fields or properties of an object without the need to write any parameterized constructor or separate statements. Sample: using System; class Student { int rollno; string stdName; static void Main() [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/05/28/what-are-object-initializers-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are the fundamental differences between value types and reference types?</title>
		<link>http://tipsinterview.com/2011/05/11/what-are-the-fundamental-differences-between-value-types-and-reference-types/</link>
		<comments>http://tipsinterview.com/2011/05/11/what-are-the-fundamental-differences-between-value-types-and-reference-types/#comments</comments>
		<pubDate>Wed, 11 May 2011 05:40:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Interview Tips]]></category>
		<category><![CDATA[c developer]]></category>
		<category><![CDATA[c developers]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[confusing aspect]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[fundamental differences]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[intrinsic types]]></category>
		<category><![CDATA[Structs]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=552</guid>
		<description><![CDATA[C# divides types into two categories – value types and reference types. Most of the intrinsic types (e.g. int, char) are value types. Structs are also value types. Reference types include classes, arrays and strings. The basic idea is straightforward – an instance of a value type represents the actual data, whereas an instance of [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2011/05/11/what-are-the-fundamental-differences-between-value-types-and-reference-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Dictionary Collections</title>
		<link>http://tipsinterview.com/2010/11/20/working-with-dictionary-collections/</link>
		<comments>http://tipsinterview.com/2010/11/20/working-with-dictionary-collections/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 00:25:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Interview Skills]]></category>
		<category><![CDATA[Collections]]></category>
		<category><![CDATA[Customer]]></category>
		<category><![CDATA[dictionary collection]]></category>
		<category><![CDATA[dictionary collections]]></category>
		<category><![CDATA[dictionary dictionary]]></category>
		<category><![CDATA[dictionary example]]></category>
		<category><![CDATA[generic collections]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[return]]></category>
		<category><![CDATA[Working]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=461</guid>
		<description><![CDATA[Another very useful generic collection is the Dictionary, which works with key/value pairs. There is a non-generic collection, called a Hashtable that does the same thing, except that it operates on type object. However, as explained earlier in this lesson, you want to avoid the non-generic collections and use thier generic counterparts instead. The scenario [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/11/20/working-with-dictionary-collections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whats the difference betweeen Structure, Class and Enumeration</title>
		<link>http://tipsinterview.com/2010/05/30/whats-the-difference-betweeen-structure-class-and-enumeration-2/</link>
		<comments>http://tipsinterview.com/2010/05/30/whats-the-difference-betweeen-structure-class-and-enumeration-2/#comments</comments>
		<pubDate>Sun, 30 May 2010 00:31:18 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[distinct type]]></category>
		<category><![CDATA[enum]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[memory structures]]></category>
		<category><![CDATA[multiple inheritance]]></category>
		<category><![CDATA[stack allocation]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[virtual methods]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=297</guid>
		<description><![CDATA[Structures and Enumerations are Value-Types. This means, the data that they contain is stored as a stack on the memory. Classes are Reference-Types, means they are stored as a heap on the memory. Structures are implicitly derived from a class called System.ValueType. The purpose of System.ValueType is to override the virtual methods defined by System.Object. [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/05/30/whats-the-difference-betweeen-structure-class-and-enumeration-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explain constructor and destructor with an example using C#.NET.</title>
		<link>http://tipsinterview.com/2010/05/10/explain-constructor-and-destructor-with-an-example-using-c-net/</link>
		<comments>http://tipsinterview.com/2010/05/10/explain-constructor-and-destructor-with-an-example-using-c-net/#comments</comments>
		<pubDate>Mon, 10 May 2010 00:39:41 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[class c]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[default values]]></category>
		<category><![CDATA[destructor]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[member function]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[public c]]></category>
		<category><![CDATA[public void]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=270</guid>
		<description><![CDATA[Explain constructor and destructor with an example using C#.NET. A constructor is a member function that performs the task of initializing the objects with the default values to be assigned after creation. A destructor is a function that is run to release the resources held by an object when it is no longer needed by [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/05/10/explain-constructor-and-destructor-with-an-example-using-c-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview questions for C# developers</title>
		<link>http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/</link>
		<comments>http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 01:03:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[c method]]></category>
		<category><![CDATA[C.MessageBoxA]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[indexers]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[native dll]]></category>
		<category><![CDATA[optional parameters]]></category>
		<category><![CDATA[return]]></category>
		<category><![CDATA[try]]></category>
		<category><![CDATA[user32 dll]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/</guid>
		<description><![CDATA[If I return out of a try/finally in C#, does the code in the finally-clause run? - Yes. The code in the finally always runs. If you return out of the try block, or even if you do a “goto” out of the try, the finally block always runs: Both “In Try block” and “In [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Interview Questions and Answers</title>
		<link>http://tipsinterview.com/2010/02/18/c-interview-questions-and-answers/</link>
		<comments>http://tipsinterview.com/2010/02/18/c-interview-questions-and-answers/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 15:17:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[string definitions]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[test string]]></category>
		<category><![CDATA[two dimensional array]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[weight thread]]></category>
		<category><![CDATA[what is a delegate]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/02/18/c-interview-questions-and-answers/</guid>
		<description><![CDATA[1) The C# keyword ?int? maps to which .NET type? System.Int16 System.Int32 System.Int64 System.Int128 2) Which of these string definitions will prevent escaping on backslashes in C#? string s = #?n Test string?; string s = ??n Test string?; string s = @?n Test string?; string s = ?n Test string?; 3) Which of these [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/02/18/c-interview-questions-and-answers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

