<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Lite Tech</title>
	<atom:link href="http://teqilite.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://teqilite.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 29 Nov 2007 09:09:58 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on New features in C# 3.0 (&#8220;C# Orcas&#8221;) by naisioxerloro</title>
		<link>http://teqilite.wordpress.com#comment-34</link>
		<dc:creator>naisioxerloro</dc:creator>
		<pubDate>Thu, 29 Nov 2007 09:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://teqilite.wordpress.com/new-features-in-c-30-c-orcas/#comment-34</guid>
		<description>Hi. 
Good design, who make it?</description>
		<content:encoded><![CDATA[<p>Hi.<br />
Good design, who make it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performance issues in .Net by teqilite</title>
		<link>http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-12</link>
		<dc:creator>teqilite</dc:creator>
		<pubDate>Fri, 27 Jul 2007 06:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-12</guid>
		<description>Hi,
For these performance tests, I wrote some sample codes which will doing just the part i wanted to show (e.g. boxing unboxing, or adding/retrieving value types to/from array list).
The sample codes were run multiple times and taken average.
Hope this answers to your first question.

Regarding your second question, you are right, unboxing returns the reference to the boxed value. but commonly the case is that you assign it to a value type and so the data pointed by the unboxed reference would be copied.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
For these performance tests, I wrote some sample codes which will doing just the part i wanted to show (e.g. boxing unboxing, or adding/retrieving value types to/from array list).<br />
The sample codes were run multiple times and taken average.<br />
Hope this answers to your first question.</p>
<p>Regarding your second question, you are right, unboxing returns the reference to the boxed value. but commonly the case is that you assign it to a value type and so the data pointed by the unboxed reference would be copied.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performance issues in .Net by Edwin</title>
		<link>http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-7</link>
		<dc:creator>Edwin</dc:creator>
		<pubDate>Fri, 22 Jun 2007 08:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-7</guid>
		<description>Hey,
I got 2 questions. By what means u measured the performance. Did you use any tools. Please throw some light on it.

second one is, when the reference type is unboxed, it doesnt copy the value to the variable. Instead it gives a reference. and i think its a read only reference. Try to execute the below sample code and see the result.

##
int i = 100,k;
            object j = i;
            k = (int)j;
            k = 200;
            Console.WriteLine(i.ToString() +&quot; and j =  &quot;+ j.ToString());</description>
		<content:encoded><![CDATA[<p>Hey,<br />
I got 2 questions. By what means u measured the performance. Did you use any tools. Please throw some light on it.</p>
<p>second one is, when the reference type is unboxed, it doesnt copy the value to the variable. Instead it gives a reference. and i think its a read only reference. Try to execute the below sample code and see the result.</p>
<p>##<br />
int i = 100,k;<br />
            object j = i;<br />
            k = (int)j;<br />
            k = 200;<br />
            Console.WriteLine(i.ToString() +&#8221; and j =  &#8220;+ j.ToString());</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performance issues in .Net by teqilite</title>
		<link>http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-4</link>
		<dc:creator>teqilite</dc:creator>
		<pubDate>Tue, 01 May 2007 07:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-4</guid>
		<description>Don&#039;t have specific guidelines right now.
Anyways this was just to show you the cost involved when you throw exceptions.
Ofcourse if the extra validity check is too costly and invalidity doesn&#039;t happen often, relying on exceptions could be beneficial.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t have specific guidelines right now.<br />
Anyways this was just to show you the cost involved when you throw exceptions.<br />
Ofcourse if the extra validity check is too costly and invalidity doesn&#8217;t happen often, relying on exceptions could be beneficial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performance issues in .Net by debasishpramanik</title>
		<link>http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-3</link>
		<dc:creator>debasishpramanik</dc:creator>
		<pubDate>Mon, 30 Apr 2007 03:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://teqilite.wordpress.com/2007/04/29/performance-issue-boxingunboxing/#comment-3</guid>
		<description>Just one question Are we saying we should not use exceptions rather there should be guidelines when to use exceptions.</description>
		<content:encoded><![CDATA[<p>Just one question Are we saying we should not use exceptions rather there should be guidelines when to use exceptions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hello world! by Mr WordPress</title>
		<link>http://teqilite.wordpress.com/2007/04/09/hello-world/#comment-1</link>
		<dc:creator>Mr WordPress</dc:creator>
		<pubDate>Mon, 09 Apr 2007 08:33:58 +0000</pubDate>
		<guid isPermaLink="false">#comment-1</guid>
		<description>Hi, this is a comment.&lt;br /&gt;To delete a comment, just log in, and view the posts&#039; comments, there you will have the option to edit or delete them.</description>
		<content:encoded><![CDATA[<p>Hi, this is a comment.<br />To delete a comment, just log in, and view the posts&#8217; comments, there you will have the option to edit or delete them.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
