<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-6005490725222948439.post6903589441671482368..comments</id><updated>2010-10-07T09:06:04.070+02:00</updated><category term='c#'/><category term='visual studio'/><category term='xml'/><category term='episerver'/><category term='ood'/><category term='agile'/><category term='debugging'/><category term='asp.net'/><category term='.net'/><category term='methodology'/><category term='philosophy'/><category term='syntax'/><category term='xp'/><title type='text'>Comments on The Tommy Code: String versus string in C#</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.tommycode.se/feeds/6903589441671482368/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default'/><link rel='alternate' type='text/html' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html'/><author><name>Tommy</name><uri>http://www.blogger.com/profile/02987079709890896170</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_l-LLksOg9eE/R9bjxIwpurI/AAAAAAAAAAM/24-1aJgI-VI/S220/tommy2.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6005490725222948439.post-5755389370268319436</id><published>2010-10-07T09:06:04.070+02:00</published><updated>2010-10-07T09:06:04.070+02:00</updated><title type='text'>Thanks Tommy for a short but sweet post!</title><content type='html'>Thanks Tommy for a short but sweet post!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default/5755389370268319436'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default/5755389370268319436'/><link rel='alternate' type='text/html' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html?showComment=1286435164070#c5755389370268319436' title=''/><author><name>Kristoffer</name><uri>http://kristofferahl.myopenid.com/</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/openid16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html' ref='tag:blogger.com,1999:blog-6005490725222948439.post-6903589441671482368' source='http://www.blogger.com/feeds/6005490725222948439/posts/default/6903589441671482368' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1050325593'/></entry><entry><id>tag:blogger.com,1999:blog-6005490725222948439.post-8169115547357982607</id><published>2009-11-01T12:13:02.700+01:00</published><updated>2009-11-01T12:13:02.700+01:00</updated><title type='text'>In my case I use string when I think of it as a si...</title><content type='html'>In my case I use string when I think of it as a simple type, just like I do with int, char, byte etc. Simple types aren&amp;#39;t classes/objects tho, so when I decide to use a method declared in the underlaying .NET Framework type in C# I use the class name, that is String, Integer, Char, Byte etc. Hence I use &amp;quot;string&amp;quot; in declarations and &amp;quot;String&amp;quot; when using the static methods and properties, like &amp;quot;String.IsNullOrEmpty(string)&amp;quot; or &amp;quot;String.Empty&amp;quot;.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default/8169115547357982607'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default/8169115547357982607'/><link rel='alternate' type='text/html' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html?showComment=1257073982700#c8169115547357982607' title=''/><author><name>Tommy</name><uri>http://www.blogger.com/profile/02987079709890896170</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp1.blogger.com/_l-LLksOg9eE/R9bjxIwpurI/AAAAAAAAAAM/24-1aJgI-VI/S220/tommy2.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html' ref='tag:blogger.com,1999:blog-6005490725222948439.post-6903589441671482368' source='http://www.blogger.com/feeds/6005490725222948439/posts/default/6903589441671482368' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-788243643'/></entry><entry><id>tag:blogger.com,1999:blog-6005490725222948439.post-7221680443027749748</id><published>2009-10-29T14:58:09.847+01:00</published><updated>2009-10-29T14:58:09.847+01:00</updated><title type='text'>It still doesn&amp;#39;t answer as WHY? 

Whats the re...</title><content type='html'>It still doesn&amp;#39;t answer as WHY? &lt;br /&gt;&lt;br /&gt;Whats the reason behind it ?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default/7221680443027749748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6005490725222948439/6903589441671482368/comments/default/7221680443027749748'/><link rel='alternate' type='text/html' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html?showComment=1256824689847#c7221680443027749748' title=''/><author><name>GoDaddy</name><uri>http://www.blogger.com/profile/15522073282193329980</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.tommycode.se/2009/01/string-versus-string-in-c.html' ref='tag:blogger.com,1999:blog-6005490725222948439.post-6903589441671482368' source='http://www.blogger.com/feeds/6005490725222948439/posts/default/6903589441671482368' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1863654085'/></entry></feed>
