<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>a developer's breadcrumb</title>
	<atom:link href="http://robertoschiabel.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertoschiabel.wordpress.com</link>
	<description>quelli che ... le permiSSion, il l'ogIn, i crokii e l'acca_emme_ti_elle ... ohhh yeah!</description>
	<lastBuildDate>Sat, 05 Dec 2009 12:47:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='robertoschiabel.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/88e560b27a32dde2cc1b7b33cc5b2a14?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>a developer's breadcrumb</title>
		<link>http://robertoschiabel.wordpress.com</link>
	</image>
			<item>
		<title>Data Type conversion: SQL Server &#8211; CLR .Net Framework</title>
		<link>http://robertoschiabel.wordpress.com/2009/12/05/data-type-conversion-sql-server-clr-net-framework/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/12/05/data-type-conversion-sql-server-clr-net-framework/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 12:47:42 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[DB & SQL]]></category>
		<category><![CDATA[IT world]]></category>
		<category><![CDATA[SQLServer]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=1007</guid>
		<description><![CDATA[Using SQL Data Type in CLR .Net need to know about data conversion.
We know that float data type is not the appropriate choice if there are few decimals, so better use decimal data type (or money in SQL Server   ).
Copied&#38;Pasted from MSDN, here is list of data type convertion between SQL Server and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=1007&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Using SQL Data Type in CLR .Net need to know about data conversion.</p>
<p>We know that <span style="font-family:Courier;">float</span> data type is not the appropriate choice if there are few decimals, so better use <span style="font-family:Courier;">decimal</span> data type (or money in SQL Server <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).<br />
Copied&amp;Pasted from MSDN, here is list of data type convertion between SQL Server and CRL .Net.</p>
<table>
<tbody>
<tr>
<td width="20%"><strong>SQL Server data type</strong></td>
<td width="44%"><strong>CLR data type (SQL Server)</strong></td>
<td width="36%"><strong>CLR data type (.NET Framework)</strong></td>
</tr>
<tr>
<td>bigint</td>
<td>SqlInt64</td>
<td>Int64, Nullable&lt;Int64&gt;</td>
</tr>
<tr>
<td>binary</td>
<td>SqlBytes, SqlBinary</td>
<td>Byte[]</td>
</tr>
<tr>
<td>bit</td>
<td>SqlBoolean</td>
<td>Boolean, Nullable&lt;Boolean&gt;</td>
</tr>
<tr>
<td>char</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>cursor</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>date</td>
<td>SqlDateTime</td>
<td>DateTime, Nullable&lt;DateTime&gt;</td>
</tr>
<tr>
<td>datetime</td>
<td>SqlDateTime</td>
<td>DateTime, Nullable&lt;DateTime&gt;</td>
</tr>
<tr>
<td>datetime2</td>
<td>SqlDateTime</td>
<td>DateTime, Nullable&lt;DateTime&gt;</td>
</tr>
<tr>
<td>DATETIMEOFFSET</td>
<td>None</td>
<td>DateTimeOffset, Nullable&lt;DateTimeOffset&gt;</td>
</tr>
<tr>
<td>decimal</td>
<td>SqlDecimal</td>
<td>Decimal, Nullable&lt;Decimal&gt;</td>
</tr>
<tr>
<td>float</td>
<td>SqlDouble</td>
<td>Double, Nullable&lt;Double&gt;</td>
</tr>
<tr>
<td>geography</td>
<td>SqlGeography (*)</td>
<td>None</td>
</tr>
<tr>
<td>geometry</td>
<td>SqlGeometry(*)</td>
<td>None</td>
</tr>
<tr>
<td>hierarchyid</td>
<td>SqlHierarchyId(*)</td>
<td>None</td>
</tr>
<tr>
<td>image</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>int</td>
<td>SqlInt32</td>
<td>Int32, Nullable&lt;Int32&gt;</td>
</tr>
<tr>
<td>money</td>
<td>SqlMoney</td>
<td>Decimal, Nullable&lt;Decimal&gt;</td>
</tr>
<tr>
<td>nchar</td>
<td>SqlChars, SqlString</td>
<td>String, Char[]</td>
</tr>
<tr>
<td>ntext</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>numeric</td>
<td>SqlDecimal</td>
<td>Decimal, Nullable&lt;Decimal&gt;</td>
</tr>
<tr>
<td>nvarchar</td>
<td>SqlChars(**)</td>
<td>String, Char[]</td>
</tr>
<tr>
<td>nvarchar(1), nchar(1)</td>
<td>SqlChars, SqlString</td>
<td>Char, String, Char[], Nullable&lt;char&gt;</td>
</tr>
<tr>
<td>real</td>
<td>SqlSingle</td>
<td>Single, Nullable&lt;Single&gt;</td>
</tr>
<tr>
<td>rowversion</td>
<td>None</td>
<td>Byte[]</td>
</tr>
<tr>
<td>smallint</td>
<td>SqlInt16</td>
<td>Int16, Nullable&lt;Int16&gt;</td>
</tr>
<tr>
<td>smallmoney</td>
<td>SqlMoney</td>
<td>Decimal, Nullable&lt;Decimal&gt;</td>
</tr>
<tr>
<td>sql_variant</td>
<td>None</td>
<td>Object</td>
</tr>
<tr>
<td>table</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>text</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>time</td>
<td>TimeSpan</td>
<td>TimeSpan, Nullable&lt;TimeSpan&gt;</td>
</tr>
<tr>
<td>timestamp</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>tinyint</td>
<td>SqlByte</td>
<td>Byte, Nullable&lt;Byte&gt;</td>
</tr>
<tr>
<td>uniqueidentifier</td>
<td>SqlGuid</td>
<td>Guid, Nullable&lt;Guid&gt;</td>
</tr>
<tr>
<td>User-defined type(UDT)</td>
<td>None</td>
<td>The same class that is bound to the user-defined type in the same assembly or a dependent assembly.</td>
</tr>
<tr>
<td>varbinary</td>
<td>SqlBytes, SqlBinary</td>
<td>Byte[]</td>
</tr>
<tr>
<td>varbinary(1), binary(1)</td>
<td>SqlBytes, SqlBinary</td>
<td>byte, Byte[], Nullable&lt;byte&gt;</td>
</tr>
<tr>
<td>varchar</td>
<td>None</td>
<td>None</td>
</tr>
<tr>
<td>xml</td>
<td>SqlXml</td>
<td>None</td>
</tr>
</tbody>
</table>
<p>(*) this type is defined in Microsoft.SqlServer.Types.dll, which is installed with SQL Server and can be downloaded from the SQL Server 2008 <a href="http://go.microsoft.com/fwlink/?LinkId=131220">feature pack</a>.</p>
<p>(**) SqlStringSQLChars is a better match for data transfer and access, and SQLString is a better match for performing String operations.</p>
<p>See complete page <a href="http://msdn.microsoft.com/en-us/library/ms131092.aspx" target="_blank">Mapping CLR Parameter Data</a> on MSDN.</p>
<p>source: MSDN <a href="http://msdn.microsoft.com/en-us/library/ms131092.aspx" target="_blank">Mapping CLR Parameter Data</a></p>
<pre>Technorati tags: <a href="http://technorati.com/tags/SQL+Server" target="_blank">SQL Server</a>, <a href="http://technorati.com/tags/.Net" target="_blank">.Net</a>, <a href="http://technorati.com/tags/Data+Type" target="_blank">Data Type</a></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/1007/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=1007&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/12/05/data-type-conversion-sql-server-clr-net-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Agile process and customers</title>
		<link>http://robertoschiabel.wordpress.com/2009/12/02/agile-process-and-customers/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/12/02/agile-process-and-customers/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 09:33:32 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[IT world]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=1005</guid>
		<description><![CDATA[What is customer&#8217;s role in agile process ?
It&#8217;s an heavy role.  
What if the customer doesn&#8217;t care?
&#8220;Well, it&#8217;s not my business!&#8221; we might say&#8230;but a successfull project mean a complete partecipation by every character.
So, someone (whatelse if not us?) need to involve the costumer the right way.
It&#8217;s very simple, Jacopo Romei talked about it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=1005&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What is customer&#8217;s role in agile process ?<br />
It&#8217;s an heavy role. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>What if the customer doesn&#8217;t care?<br />
&#8220;Well, it&#8217;s not my business!&#8221; we might say&#8230;but a successfull project mean a complete partecipation by every character.</p>
<p>So, <em>someone</em> (whatelse if not <strong>us</strong>?) need to involve the costumer the right way.<br />
It&#8217;s very simple, <a href="http://www.sviluppoagile.it/" target="_blank">Jacopo Romei</a> talked about it in his talk (<a href="http://www.sviluppoagile.it/italian-agile-day-2009-tutti-i-miei-sbagli-extreme-programming" target="_blank">Tutti i miei sbagli&#8230;</a>) at last <a href="http://www.agileday.it/front/2009/italian-agile-day-2009/" target="_blank">Agile Day</a>: quantify your contribute to customer business. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Please <strong>think</strong> about the <strong>value</strong> your job give to <strong>customer&#8217;s business</strong>.</p>
<pre>Technorati tags: <a href="http://technorati.com/tags/Agile" target="_blank">Agile</a>, <a href="http://technorati.com/tags/Customer" target="_blank">Customer</a></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/1005/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/1005/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/1005/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/1005/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/1005/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/1005/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/1005/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/1005/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/1005/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/1005/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=1005&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/12/02/agile-process-and-customers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>A month passed by &#8230;</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/29/a-month-passed-by/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/29/a-month-passed-by/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 23:35:01 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[IT world]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=993</guid>
		<description><![CDATA[a month &#8230; and 40 years.
Mrs Internet (former Miss Arpanet) had her 40 birthday last Oct 29.
Why she?
Because a (over) 40 woman, still hasn&#8217;t show her best. 
Happy birthday, Mrs Internet.  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=993&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>a month &#8230; and 40 years.<br />
Mrs Internet (former Miss Arpanet) had her 40 birthday last Oct 29.<br />
Why <em>she</em>?</p>
<p>Because a (over) 40 woman, still hasn&#8217;t show her best. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Happy birthday, Mrs Internet. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/993/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=993&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/29/a-month-passed-by/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Free ebook from Microsoft: Microsoft® Application Architecture Guide, pattern&amp;practise 2nd Edition</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/28/free-ebook-from-microsoft-microsoft%c2%ae-application-architecture-guide-patternpractise-2nd-edition/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/28/free-ebook-from-microsoft-microsoft%c2%ae-application-architecture-guide-patternpractise-2nd-edition/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 23:03:39 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[IT Books]]></category>
		<category><![CDATA[IT world]]></category>
		<category><![CDATA[Book]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=1001</guid>
		<description><![CDATA[A brand new version (2nd edition) of this book: Microsoft® Application Architecture Guide, pattern&#38;practise
Introducing the Guide
The goal of this guide is to help developers and solution architects build effective,
high quality applications on the Microsoft platform and the .NET Framework more
quickly and with less risk by leveraging tried and trusted architecture and design
principles and patterns.
The guide [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=1001&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A brand new version (2nd edition) of this book: Microsoft® Application Architecture Guide, pattern&amp;practise</p>
<blockquote><p><strong>Introducing the Guide</strong><br />
The goal of this guide is to help developers and solution architects build effective,<br />
high quality applications on the Microsoft platform and the .NET Framework more<br />
quickly and with less risk by leveraging tried and trusted architecture and design<br />
principles and patterns.<br />
The guide provides an overview of the underlying principles and patterns that provide<br />
a solid foundation for good application architecture and design.<br />
[...]</p></blockquote>
<p>You may buy this book (example, <a href="http://www.amazon.com/Microsoft®-Application-Architecture-Patterns-Practices/dp/073562710X/" target="_blank">this link</a> on Amazon) or download from Microsoft Download Center (via <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=ce40e4e1-9838-4c89-a197-a373b2a60df2" target="_blank">this link</a>).</p>
<p>source #1: <a href="http://msdn.microsoft.com/en-us/library/dd673617.aspx" target="_blank">Microsoft Application Architecture Guide, 2nd Edition</a><br />
source #2: <a href="http://www.codeplex.com/AppArchGuide" target="_blank">patterns &amp; practices Application Architecture Guide 2.0</a> project site<br />
source #3: <a href="http://blogs.msdn.com/microsoft_press/archive/2009/11/22/new-book-microsoft-application-architecture-guide-second-edition.aspx" target="_blank">New book: Microsoft Application Architecture Guide, Second Edition</a></p>
<pre>Technorati tags: <a href="http://technorati.com/tags/Application+Architecture" target="_blank">Application Architecture</a>, <a href="http://technorati.com/tags/guide" target="_blank">guide</a>, <a href="http://technorati.com/tags/ebook" target="_blank">ebook</a></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/1001/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=1001&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/28/free-ebook-from-microsoft-microsoft%c2%ae-application-architecture-guide-patternpractise-2nd-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup any smartphone</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/25/backup-any-smartphone/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/25/backup-any-smartphone/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 00:11:56 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=997</guid>
		<description><![CDATA[Have you ever thought about backup your pc?  why not? 
and backup your smartphone?  why yes?  
Anyway, whatever your smartphone is (Android, Blackberry, iPhone, Palm, Symbian, Windows Mobile) this post at Gizmodo provide a solution for every os.
Read full article here How To: Back Up Any Smartphone.
Actually, standard solution for Windows Mobile [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=997&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Have you ever thought about backup your pc?  why not? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /><br />
and backup your smartphone?  why yes?  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /><br />
Anyway, whatever your smartphone is (Android, Blackberry, iPhone, Palm, Symbian, Windows Mobile) this post at <a href="http://gizmodo.com/" target="_blank">Gizmodo</a> provide a solution for every os.</p>
<p>Read full article here <a href="http://gizmodo.com/5410369/how-to-back-up-any-smartphone" target="_blank">How To: Back Up Any Smartphone</a>.<br />
Actually, standard solution for Windows Mobile via <a href="http://www.microsoft.com/windowsmobile/en-us/help/synchronize/activesync-download.mspx" target="_blank">ActiveSync</a> or <a href="http://www.microsoft.com/windowsmobile/en-us/downloads/microsoft/device-center-download.mspx" target="_blank">Windows Mobile Device Center</a>, didn&#8217;t work with <a href="http://robertoschiabel.wordpress.com/2008/06/03/welcome-blackjack/" target="_blank">my smartphone</a> (contacts, messages, ecc not available for sync ;( ).</p>
<p>source: <a href="http://lifehacker.com/5410731/back-up-any-smartphones-contents" target="_blank">Back Up Any Smartphone&#8217;s Contents [Backup]</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/997/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/997/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/997/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/997/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/997/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/997/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/997/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/997/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/997/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/997/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=997&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/25/backup-any-smartphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing Resharper 4.5</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/23/testing-resharper-4-5/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/23/testing-resharper-4-5/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 21:30:31 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[IT world]]></category>
		<category><![CDATA[Resharper]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=989</guid>
		<description><![CDATA[Just a first, quick, feedback about Resharper 4.5.1 (build 1274 and 1288).
Very usefull writing methods, autocompletition on brackets and method&#8217;s firm, plus naming convention declaring variabiables, and unit test section. 
Unfortunately, it seems to me very slow providing methods&#38;props of my classes, and executing unit tests too (read here).  
Technorati tags: Visual Studio, Resharper
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=989&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just a first, quick, feedback about Resharper 4.5.1 (build 1274 and 1288).<br />
Very usefull writing methods, autocompletition on brackets and method&#8217;s firm, plus naming convention declaring variabiables, and unit test section. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Unfortunately, it seems to me very slow providing methods&amp;props of my classes, and executing unit tests too (read <a href="http://robertoschiabel.wordpress.com/2009/10/23/run-unit-tests-in-resharper/" target="_blank">here</a>). <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<pre>Technorati tags: <a href="http://technorati.com/tags/Visual+Studio" target="_blank">Visual Studio</a>, <a href="http://technorati.com/tags/Resharper" target="_blank">Resharper</a></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/989/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/989/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/989/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/989/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/989/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/989/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/989/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/989/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/989/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/989/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=989&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/23/testing-resharper-4-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Samsung SGH-I600 tips &amp; tricks</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/19/samsung-sgh-i600-tips-tricks/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/19/samsung-sgh-i600-tips-tricks/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:15:26 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[IT world]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=986</guid>
		<description><![CDATA[After about 15 months, I consider this toy very &#8230; very! 
But, an heavy daily usage made standard battery very shorty;
in the beginning, it lasted 6+ hours (with bluetooth and 3G on); now it&#8217;s life is about less than 3 hour.
So, I looked for some tips&#38; tricks post, just to try make me usage healthier. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=986&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After about 15 months, I consider this <em>toy</em> very &#8230; very! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
But, an heavy daily usage made standard battery very shorty;<br />
in the beginning, it lasted 6+ hours (with bluetooth and 3G on); now it&#8217;s life is about less than 3 hour.<br />
So, I looked for some tips&amp; tricks post, just to try make me usage healthier. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I found old posts, of course; most of info are old or useless in my daily usage, but you may find something usefull, so please read  <a href="http://www.modaco.com/content/i60x-i60x-modaco-com/270622/definitive-guide-to-improving-the-battery-life-of-your-debranded-wm5-i600/#entry940495" target="_blank">Definitive guide to improving the battery life of your debranded WM5 i600, Mad scientist conducts exhaustive tests</a>.</p>
<p>I haven&#8217;t had a single test, so please read it at your own risk. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/986/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=986&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/19/samsung-sgh-i600-tips-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Hyper-V videos section</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/16/hyper-v-videos-section/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/16/hyper-v-videos-section/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 23:59:33 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[Hyper-V]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=984</guid>
		<description><![CDATA[Hyper-V represents the virtualization solution by Microsoft.
Lots of times you wish see a video talking about architecture, features, configs, etc.
Lately I discovered a video setions containing more than 10 videos &#8230; so far.
Here are few examples:

Virtual Machine Migration Test Wizard
Ben Armstrong on Hyper-V Snapshot Common Issues
Hyper-V R2: Making Highly Available VMs

And so on&#8230;  
full [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=984&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hyper-V represents the virtualization solution by Microsoft.<br />
Lots of times you wish see a video talking about architecture, features, configs, etc.<br />
Lately I discovered a video setions containing more than 10 videos &#8230; so far.</p>
<p>Here are few examples:</p>
<ul>
<li><a href="http://video.msn.com/video.aspx?mkt=en-US&amp;vid=487bbef4-6ab7-4121-91de-c87613014bbb" target="_blank">Virtual Machine Migration Test Wizard</a></li>
<li><a href="http://video.msn.com/video.aspx?mkt=en-US&amp;vid=c47aee4d-b89a-47b5-8c38-3a1d6e1997cf" target="_blank">Ben Armstrong on Hyper-V Snapshot Common Issues</a></li>
<li><a href="http://video.msn.com/video.aspx?mkt=en-US&amp;vid=1a414155-3655-4eae-b52f-a5e927050c7e" target="_blank">Hyper-V R2: Making Highly Available VMs</a></li>
</ul>
<p>And so on&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>full list here <a href="http://technet.microsoft.com/en-us/library/ee731912(WS.10).aspx" target="_blank">Hyper-V videos</a> on <a href="http://technet.microsoft.com/" target="_blank">TechNet Microsoft</a></p>
<pre>Technorati tags: <a href="http://technorati.com/tags/Hyper-V" target="_blank">Hyper-V</a></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/984/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=984&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/16/hyper-v-videos-section/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Free ebook from Microsoft: Deploying Windows® 7 Essential Guidance from the Windows 7 Resource Kit and TechNet Magazine</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/14/free-ebook-from-microsoft-deploying-windows%c2%ae-7-essential-guidance-from-the-windows-7-resource-kit-and-technet-magazine/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/14/free-ebook-from-microsoft-deploying-windows%c2%ae-7-essential-guidance-from-the-windows-7-resource-kit-and-technet-magazine/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 19:36:38 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[IT Books]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[Windows7]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=978</guid>
		<description><![CDATA[A brand new free ebook by Microsoft.  
Overview
Microsoft’s eBook Deploying Windows® 7 Essential Guidance from the Windows 7 Resource Kit and TechNet Magazine combine selected chapters written by industry experts Mitch Tulloch, Tony Northrup, Jerry Honeycutt, Ed Wilson, and the Windows 7 Team with select Windows 7 articles from TechNet Magazine. Sample topics include: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=978&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A brand new free ebook by Microsoft. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<blockquote><p>Overview<br />
Microsoft’s eBook Deploying Windows® 7 Essential Guidance from the Windows 7 Resource Kit and TechNet Magazine combine selected chapters written by industry experts Mitch Tulloch, Tony Northrup, Jerry Honeycutt, Ed Wilson, and the Windows 7 Team with select Windows 7 articles from TechNet Magazine. Sample topics include: Deployment Platform, Planning Deployment, Testing Application Compatability, and 8 Common Issues in Windows 7 Migrations.</p></blockquote>
<p>download here: <a href="http://www.microsoft.com/downloads/details.aspx?familyid=EE2A1D38-88A9-43B3-95BC-7E962F0B6030&amp;displaylang=en" target="_blank">Deploying Windows® 7 Essential Guidance from the Windows 7 Resource Kit and TechNet Magazine</a></p>
<p>Technorati tags: <a href="http://technorati.com/tags/Windows7" target="_blank">Windows7</a>, <a href="http://technorati.com/tags/ebook" target="_blank">ebook</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/978/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/978/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/978/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/978/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/978/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/978/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/978/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/978/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/978/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/978/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=978&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/14/free-ebook-from-microsoft-deploying-windows%c2%ae-7-essential-guidance-from-the-windows-7-resource-kit-and-technet-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
		<item>
		<title>Virtual vs Abstract</title>
		<link>http://robertoschiabel.wordpress.com/2009/11/10/virtual-vs-abstract/</link>
		<comments>http://robertoschiabel.wordpress.com/2009/11/10/virtual-vs-abstract/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 21:39:21 +0000</pubDate>
		<dc:creator>robertoschiabel</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[IT world]]></category>
		<category><![CDATA[C# Programming]]></category>

		<guid isPermaLink="false">http://robertoschiabel.wordpress.com/?p=975</guid>
		<description><![CDATA[Another remind for myself  
abstract:
[...]an abstract property declaration specifies that the accessors of the property are virtual, but does not provide an actual implementation of the accessors. Instead, non-abstract derived classes are required to provide their own implementation for the accessors by overriding the property. Because an accessor for an abstract property declaration provides no [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=975&subd=robertoschiabel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Another remind for myself <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><em>abstract</em>:</p>
<p>[...]an abstract property declaration specifies that the accessors of the property are virtual, but does not provide an actual implementation of the accessors. Instead, non-abstract derived classes are required to provide their own implementation for the accessors by overriding the property. Because an accessor for an abstract property declaration provides no actual implementation, its accessor-body simply consists of a semicolon.  [...]</p>
<p><em>virtual</em>:<br />
same as abstract, except subclasses may provide their own implementation.</p>
<p>more info: <a href="http://msdn.microsoft.com/en-us/library/aa664453(VS.71).aspx" target="_blank">Virtual, sealed, override, and abstract accessors</a> (MSDN)<br />
and here <a href="http://stackoverflow.com/questions/391483/what-is-the-difference-between-abstract-function-and-virtual-function" target="_blank">What is the difference between abstract function and virtual function?</a></p>
<pre>Technorati tags: <a href="http://technorati.com/tags/Abstract" target="_blank">Abstract</a>, <a href="http://technorati.com/tags/Virtual" target="_blank">Virtual</a></pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robertoschiabel.wordpress.com/975/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robertoschiabel.wordpress.com/975/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robertoschiabel.wordpress.com/975/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robertoschiabel.wordpress.com/975/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robertoschiabel.wordpress.com/975/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robertoschiabel.wordpress.com/975/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robertoschiabel.wordpress.com/975/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robertoschiabel.wordpress.com/975/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robertoschiabel.wordpress.com/975/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robertoschiabel.wordpress.com/975/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robertoschiabel.wordpress.com&blog=913905&post=975&subd=robertoschiabel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://robertoschiabel.wordpress.com/2009/11/10/virtual-vs-abstract/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e00a762dc31e3c809d106729f4fcd0a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robertoschiabel</media:title>
		</media:content>
	</item>
	</channel>
</rss>