<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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>framework-35 &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/framework-35/</link>
	<description>Feed of posts on WordPress.com tagged "framework-35"</description>
	<pubDate>Fri, 25 Dec 2009 00:19:42 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Lamda Expressions und Expression Trees mit VB.Net]]></title>
<link>http://webjagger.wordpress.com/2009/09/14/lamda-expressions-und-expression-trees-mit-vb-net/</link>
<pubDate>Mon, 14 Sep 2009 11:57:49 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/09/14/lamda-expressions-und-expression-trees-mit-vb-net/</guid>
<description><![CDATA[Also ich hab&#8217;s ja nicht so sehr damit, aber die folgenden Links haben mir zumindest nicht zule]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Also ich hab&#8217;s ja nicht so sehr damit, aber die folgenden Links haben mir zumindest nicht zuletzt anhand der Beispiele weitergeholfen, etwas in die Materie einzutauchen:
<ul>
<li><a href="http://blogs.msdn.com/vbteam/archive/2007/09/11/lambda-expressions-and-expression-trees.aspx">The Visual Basic Team &#8211; Lamda Expressions and Expression Trees</a></li>
<li><a href="http://blogs.msdn.com/vbteam/archive/2007/08/29/implementing-dynamic-searching-using-linq.aspx">The Visual Basic Team &#8211; Implementing Dynamic Searching Using LINQ</a></li>
<li><a href="http://stackoverflow.com/questions/30879/is-there-a-pattern-using-linq-to-dynamically-create-a-filter">Is there a pattern using Linq to dynamically create a filter?</a></li>
<li><a href="http://www.aspfree.com/c/a/.NET/Grouping-and-Aggregating-When-Querying-LINQ-to-SQL/">Grouping and Aggregating When Querying LINQ to SQL</a></li>
</ul>
<p>Also das könnte in VB.Net dann z.B. wie folgt aussehen:<br />
<code><br />
query  = query.Where(Function(c)c.ContactFirstname.Contains("Blacklisted"))<br />
</code></p>
<p>Und das ist mein Beispiel, damit ich&#8217;s auch mal hingekriegt habe:<br />
<code><br />
Public Class xxx</p>
<p>    Private m_xId As Short<br />
    Public ReadOnly Property xId() As Short<br />
        Get<br />
            Return m_xId<br />
        End Get<br />
    End Property</p>
<p>    Private m_xGroupNr As Integer<br />
    Public ReadOnly Property xGroupNr() As Integer<br />
        Get<br />
            Return m_xGroupNr<br />
        End Get<br />
    End Property</p>
<p>    Private m_xBetrag As Decimal<br />
    Public ReadOnly Property xBetrag() As Decimal<br />
        Get<br />
            Return m_xBetrag<br />
        End Get<br />
    End Property</p>
<p>    Public Sub New( _<br />
     ByVal _xId As Short _<br />
     , ByVal _xGroupNr As Integer _<br />
     , ByVal _xBetrag As Double _<br />
    )<br />
        MyBase.new()<br />
        m_xId = _xId<br />
        m_xGroupNr = _xGroupNr<br />
        m_xBetrag = _xBetrag<br />
    End Sub</p>
<p>End Class</p>
<p>...<br />
            Dim xxxList As New List(Of xxx)<br />
            xxxList.Add(New xxx(1, 10, 100))<br />
            xxxList.Add(New xxx(2, 10, 200))<br />
            xxxList.Add(New xxx(3, 20, 400))<br />
            xxxList.Add(New xxx(4, 20, 500))</p>
<p>            Dim xQuery = From x In xxxList _<br />
                         Select x</p>
<p>            Dim xQueryG = From x In xxxList _<br />
                          Group x By x.xGroupNr _<br />
                          Into Group _<br />
                          Select _<br />
                          xGroupNr _<br />
                          , BetragSum = Group.Sum(Function(x) x.xBetrag)</p>
<p>            Dim xQueryG2 = From x In xxxList _<br />
                          Group x By x.xGroupNr _<br />
                          Into Group _<br />
                          Select _<br />
                          New xxx( _<br />
                            _xId:=0 _<br />
                            , _xGroupNr:=xGroupNr _<br />
                            , _xBetrag:=Group.Sum(Function(x) x.xBetrag) _<br />
                            )</p>
<p></code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[101 LINQ Samples + LINQPad]]></title>
<link>http://webjagger.wordpress.com/2009/09/01/101-linq-samples-linqpad/</link>
<pubDate>Tue, 01 Sep 2009 06:16:50 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/09/01/101-linq-samples-linqpad/</guid>
<description><![CDATA[Eine ganz anschauliche Sammlung an LINQ-Beispielen gibt&#8217;s unter 101 LINQ Samples Und wer noch ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Eine ganz anschauliche Sammlung an LINQ-Beispielen gibt&#8217;s unter <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" target="_blank">101 LINQ Samples</a><br />
Und wer noch etwas Toolunterstützung braucht, kann dann noch <a href="http://www.linqpad.net/" target="_blank">LINQPad</a> verwenden.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Eigene Assembly in "Add Reference" Dialog von Visual Studio 2010]]></title>
<link>http://webjagger.wordpress.com/2009/07/13/eigene-assembly-in-add-reference-dialog-von-visual-studio-2010/</link>
<pubDate>Mon, 13 Jul 2009 12:30:44 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/07/13/eigene-assembly-in-add-reference-dialog-von-visual-studio-2010/</guid>
<description><![CDATA[Ich habe versucht eine eigene Assembly,&nbsp; die sich nachweislich &#8211; hab&#8217;s mit gacutil ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><font face="sans-serif">Ich habe versucht eine eigene Assembly,&#160; die sich nachweislich &#8211; hab&#8217;s mit gacutil überprüft &#8211; im Global Assembly Cache (GAC)</font> befand in den &#8220;Add Reference&#8221; Dialog von Visual Studio 2010 zu kriegen. Ich hab einiges ausprobiert und bin zu dem Schluss gekommen: Vergiss den GAC, für Visual Studio zählt nur das, was in der Registry steht.<br />
Entscheidend sind folgende beide Einträge:</p>
<pre>[HKEY_CURRENT_USER\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\MyAssemblies]@="C:\MyAssemblies"</pre>
<p>bzw.</p>
<pre>[HKEY_CURRENT_MACHINE\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\MyAssemblies]@="C:\MyAssemblies"</pre>
<p>Wobei ersterer nur für den angemeldeten Benutzer gilt, der zweite für alle Benutzer.<br />
Das hat dann funktioniert &#8211; übrigens auch in den Vorgängerversionen.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[C# oder Visual Basic? Die richtige Programmiersprache für .NET-Entwickler]]></title>
<link>http://webjagger.wordpress.com/2009/06/30/c-oder-visual-basic-die-richtige-programmiersprache-fur-net-entwickler/</link>
<pubDate>Tue, 30 Jun 2009 05:18:44 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/06/30/c-oder-visual-basic-die-richtige-programmiersprache-fur-net-entwickler/</guid>
<description><![CDATA[Der Artikel auf heise developer sollte vor allem die &#8220;Halbgötter unter den Programmierern]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><font face="sans-serif">Der <a target="_blank" href="http://www.heise.de/developer/C-oder-Visual-Basic-Die-richtige-Programmiersprache-fuer-NET-Entwickler--/artikel/140794/0">Artikel auf heise developer</a> sollte vor allem die &#8220;Halbgötter unter den Programmierern&#8221; wieder auf den Boden der Tatsachen zurückholen</font>. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <br />Aber im Ernst &#8211; es ist doch beruhigend zu wissen, dass die Sprachwahl im .Net Framework keine Vor-/Nachteile mit sich bringt und dass das auch so bleiben soll.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aktion "I'm a VB" gestartet]]></title>
<link>http://webjagger.wordpress.com/2009/06/29/aktion-im-a-vb-gestartet/</link>
<pubDate>Mon, 29 Jun 2009 08:19:19 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/06/29/aktion-im-a-vb-gestartet/</guid>
<description><![CDATA[Ein neues Blog, in dem VB-Entwickler ihre Geschichte/Erfahrung veröffentlichen können.http://blogs.m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ein neues Blog, in dem VB-Entwickler ihre Geschichte/Erfahrung veröffentlichen können.<br /><a target="_blank" href="http://blogs.msdn.com/vbteam/archive/2009/06/26/i-m-a-vb.aspx">http://blogs.msdn.com/vbteam/archive/2009/06/26/i-m-a-vb.aspx</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LINQ to SQL Debug Visualizer]]></title>
<link>http://webjagger.wordpress.com/2009/06/02/linq-to-sql-debug-visualizer/</link>
<pubDate>Tue, 02 Jun 2009 12:54:06 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/06/02/linq-to-sql-debug-visualizer/</guid>
<description><![CDATA[Leider gibt&#8217;s im Visual Studio 2008 keine bereits eingebaute Möglichkeit, das durch LINQ to SQ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Leider gibt&#8217;s im Visual Studio 2008 keine bereits eingebaute Möglichkeit, das durch LINQ to SQL generiert TSQL anzuschauen.<br />
Wem der Umweg über den SQL Server Profiler zu aufwendig ist, der findet im LINQ to SQL Debug Visualizer vielleicht die Lösung.<br />
Mehr Info gibt in <a href="http://weblogs.asp.net/scottgu/archive/2007/07/31/linq-to-sql-debug-visualizer.aspx">Scott Guthrie&#8217;s Blog</a> und dort gibt&#8217;s auch den <a href="http://www.scottgu.com/blogposts/linqquery/SqlServerQueryVisualizer.zip">Download</a>.<br />
Irgendwo im ZIP-File gibt&#8217;s dann auch die DLL, die man dann ins Verzeichnis <em>c:\Programme\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers\</em> kopiert. Visual Studio neu starten und fertig ist die Laube.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LINQ: LEFT OUTER JOIN]]></title>
<link>http://webjagger.wordpress.com/2009/05/29/linq-left-outer-join/</link>
<pubDate>Fri, 29 May 2009 07:39:06 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/05/29/linq-left-outer-join/</guid>
<description><![CDATA[Muss das wirklich so grausam aussehen? So sahen jedenfalls die Beispiele aus, die ich gefunden habe:]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Muss das wirklich so grausam aussehen? So sahen jedenfalls die Beispiele aus, die ich gefunden habe:</p>
<p>Dim oDatenPlan = From oMon In listMonate _<br />
                 Group Join oUppUp In dcUpp.tUppUmsatzPlans On oMon Equals oUppUp.Monat _<br />
                 Into gVorlage = Group _<br />
                 From oUppUp In gVorlage.DefaultIfEmpty() _<br />
                 Where If(oUppUp Is Nothing, -1, oUppUp.FkFilialId) = oFiliale.FilialId _<br />
                 And If(oUppUp Is Nothing, -1, oUppUp.FkAbtId) = abtId _<br />
                 Select oMon</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Chart Controls - Problem beim Deployment ]]></title>
<link>http://webjagger.wordpress.com/2009/04/17/microsoft-chart-controls-problem-beim-deployment/</link>
<pubDate>Fri, 17 Apr 2009 09:10:23 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/04/17/microsoft-chart-controls-problem-beim-deployment/</guid>
<description><![CDATA[Wollte das erste WebProjekt mit Microsoft Chart Controls for Microsoft .NET Framework 3.5 veröffentl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wollte das erste WebProjekt mit Microsoft Chart Controls for Microsoft .NET Framework 3.5 veröffentlichen und lief prompt auf ein Problemchen.<br />
Die Komponente braucht ein Verzeichnis für temporäre Dateien. In der web.config steht daher standardmäßig folgender Eintrag:<br />
<code>&#60;add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" /&#62; </code></p>
<p>Leider fehlte das Verzeichnis auf dem Produktivserver. Darum hab ich&#8217;s per URL auf ein Verzeichnis innerhalb des Projektverzeichnisses abgeändert, das ich beim Deployment mit anlege. Sieht dann so aus:<br />
<code>&#60;add key="ChartImageHandler" value="storage=file;timeout=20;url=~\Reports\;"/&#62; </code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Chart Controls for Microsoft .NET Framework 3.5]]></title>
<link>http://webjagger.wordpress.com/2009/04/14/microsoft-chart-controls-for-microsoft-net-framework-35/</link>
<pubDate>Tue, 14 Apr 2009 07:09:57 +0000</pubDate>
<dc:creator>webjagger</dc:creator>
<guid>http://webjagger.wordpress.com/2009/04/14/microsoft-chart-controls-for-microsoft-net-framework-35/</guid>
<description><![CDATA[Im Artikel Charting With ASP.NET And LINQ im MSDN Magazine (Ausgabe März 2009) stolperte ich zufälli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Im Artikel <a href="http://msdn.microsoft.com/de-de/magazine/dd453008(en-us).aspx">Charting With ASP.NET And LINQ</a> im MSDN Magazine (Ausgabe März 2009) stolperte ich zufällig über eine &#8211; da lacht das Schwabenherz wieder einmal und ich hoffe, ich habe in der ersten Euphorie nichts übersehen &#8211; kostenlose Chart-Komponente von MS, die ich bis dato noch gar nicht kannte und die aber sehr vielversprechend anmutet. Bisher verwendete ich meist <a href="http://www.chartfx.de/">ChartFX</a>, das allerdings kostenpflichtig ist.<br />
Auch in der englischen April Ausgabe ist die Komponente in der <a href="http://msdn.microsoft.com/en-us/magazine/dd569763.aspx">Toolbox</a> erwähnt<br />
Links:</p>
<ul>
<li>Control Win+Web: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&#38;DisplayLang=en">Download Microsoft Chart Controls for Microsoft .NET Framework 3.5</a></li>
<li>Visual Studio Integration: <a href="http://www.microsoft.com/downloads/details.aspx?familyid=1D69CE13-E1E5-4315-825C-F14D33A303E9&#38;displaylang=en">Download Microsoft Chart Controls Add-on for Microsoft Visual Studio 2008</a></li>
<li>Jeweils eine downloadbare super <a href="http://code.msdn.microsoft.com/mschart/Release/ProjectReleases.aspx?ReleaseId=1591">Sample</a> Anwendung für Web und Win.</li>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/threads/">Chart Controls for .Net Framework Forum</a></li>
</ul>
<p>Also ich hab mal einen kurzen Blick auf die Web-Geschichte geworfen, aber das Teil sieht mal nicht schlecht aus und integriert sich auch prima in den Designer.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Links Interessantes]]></title>
<link>http://roniedias.wordpress.com/2009/04/03/links-interessantes/</link>
<pubDate>Fri, 03 Apr 2009 04:00:12 +0000</pubDate>
<dc:creator>Ronie Dias</dc:creator>
<guid>http://roniedias.wordpress.com/2009/04/03/links-interessantes/</guid>
<description><![CDATA[Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1: BETA Para quem quiser desenvolver ap]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2>Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1: BETA</h2>
<p>Para quem quiser desenvolver aplicações para Windows Seven, é necessário instalar o <strong>Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1: BETA,</strong> que provê documentação, exemplos, arquivos de referência, bibliotecas e ferramentas (incluindo compiladores c#) ou seja, tudo que você precisa para desenvolver aplicações que rodem no Windows Seven BETA utilizando o Framework 3.5 SP1.</p>
<p>Lembrando que o SDK é apenas para as versões 2008 do Visual Studio.</p>
<p>Link: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=A91DC12A-FC94-4027-B67E-46BAB7C5226C&#38;displaylang=en">Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1: BETA</a></p>
<p> <!--more--> </p>
<h2>ASP.NET MVC</h2>
<p><span class="BasicHeadlinesDescLabelCssClass">O <strong>ASP.NET MVC</strong> provê um Framework que possibilita a fácil implementação do padrão <em>Model View Controller (MVC)</em> para aplicações Web.</span></p>
<p><span class="BasicHeadlinesDescLabelCssClass"><strong>Download em:</strong></span> <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=A24D1E00-CD35-4F66-BAA0-2362BDDE0766&#38;displaylang=en">ASP.NET MVC</a></p>
<p><strong>Mais informações:</strong></p>
<ol>
<li><a href="http://www.asp.net/mvc/">ASP.NET MVC Site</a></li>
<li><a href="http://www.microsoft.com/downloads/info.aspx?na=40&#38;p=2&#38;SrcDisplayLang=en&#38;SrcCategoryId=&#38;SrcFamilyId=a24d1e00-cd35-4f66-baa0-2362bdde0766&#38;u=http%3a%2f%2fwww.codeplex.com%2faspnet">ASP.NET Codeplex Site</a></li>
</ol>
<p>  </p>
<div class="xg_headline">
<div class="tb">
<h2>Microsoft SQL Server 2008 Feature Pack</h2>
<p><span>O Feature Pack é uma coleção de pacotes de instalação autônoma que agregam valor ao SQL Server 2008. Ele inclui as últimas versões de:</span></p>
<ul>
<li><span>Componentes redistribuíveis para SQL Server 2008.</span></li>
<li><span>Provedores complementares para SQL Server 2008.</span></li>
<li><span>Componentes de compatibilidade com versões anteriores para SQL Server 2008.</span></li>
</ul>
<p> <span class="BasicHeadlinesDescLabelCssClass">Download disponível em: <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=pt-br&#38;FamilyID=c6c3e9ef-ba29-4a43-8d69-a2bed18fe73c">Microsoft SQL Server 2008 Feature Pack</a></span></div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[جایی که دات نت نوشتیم!]]></title>
<link>http://netsooz.wordpress.com/2008/10/06/%d8%ac%d8%a7%db%8c%db%8c-%da%a9%d9%87-%d8%af%d8%a7%d8%aa-%d9%86%d8%aa-%d9%86%d9%88%d8%b4%d8%aa%db%8c%d9%85/</link>
<pubDate>Mon, 06 Oct 2008 13:59:10 +0000</pubDate>
<dc:creator>امیر حمیدی</dc:creator>
<guid>http://netsooz.wordpress.com/2008/10/06/%d8%ac%d8%a7%db%8c%db%8c-%da%a9%d9%87-%d8%af%d8%a7%d8%aa-%d9%86%d8%aa-%d9%86%d9%88%d8%b4%d8%aa%db%8c%d9%85/</guid>
<description><![CDATA[تو این پست قصد دارم نسخه جدید محیط برنامه نویسی ویژوال استدیو 2008 مایکروسافت رو براتون معرفی کنم. ب]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>تو این پست قصد دارم نسخه جدید محیط برنامه نویسی ویژوال استدیو 2008 مایکروسافت رو براتون معرفی کنم. به هر حال برای ما ها که با تکنولوژی مایکروسافت آمیخته شدیم بیشتر دونستن از محصولات و ابزارهای اون خالی از لطف نیست. قبل از هر چیزی بگم که این نسخه 2008 واقعا یک نسخه ایده آۀ و رویایی به شمار می ره، البته این رو تجربه من موقع اجرای یک پروژه ASP.NET ثابت کرد. به طور کل VS2008 رو نه با نسخه های قبلی خود VS و نه با هیچ IDE دیگه نمیشه مقایسه کرد. در واقع من این Platform رو به جرات سالار می نامم!</p>
<p>مایکروسافت در این نسخه جدید ترین تکنولوژی خود یعنی dot net Framework 3.5 رو به کار برده. از مهمترین ویژگی های این نسخه می شه به قابلیت تولید نرم افزارهای تحت ویستا نیز اشاره کرد. گفته می شه 250 ویژگی جدید و منحصر بفرد در این نسخه وجود داره.</p>
<p>اگر براتون اتفاق بیفته که یک وب سایت رو با این ابزار برنامه نویسی کنید عملا آسودگی خاطر و سرعت عمل رو مشاهده خواهید کرد. یکی از ویژگی های جالب توجه LINQ می باشد، LINQ در واقع زبان پرس و جوی پیوسته (Language Intergrated Query) هست. این یعنی به قدری دست و بال برنامه نویس باز می شه که فقط کافیه بگه از دیتا بیس چی می خواد، دیگه لازم نیست بشینه وسطرها کد رو بنویسه. مایکروسافت گفته که می خواد این تکنولوژی رو کم کم نهادینه کنه.</p>
<p>یکی از ویژگی های بسیار بارز این نسخه تفزوده شدن امکان برنامه نویسی ساده AJAX هستش. به این ترتیب که شما تمام ابزار مورد نیاز برای استفاده از تکولوژی AJAX رو در toolbox در اختیار دارید و دیگه لازم نیست سطرها برنامه نویسی برای این انجام بدید.</p>
<p><!--more--></p>
<p>همچنین به طرز جالبی خطایابی و ارائه پیشنهاد برای اصلاح خطا توسعه و تکمیل یافته. کلا از نظر ویژوال و ظاهری هم تفاوت های با نسخه قبل احساس می شه بعلاوه اینکه امنیت و سرعت هم دو فاکتور اساسی مطرح و توسعه یافته تو این نسخه هستند.</p>
<p>قیمت پایه برای کسانی که تازه از این نسخه خرید می کنند 799 دلار آمریکا و برای کسانی که از نسخه قبل ارتقا می دهند 549 دلاراست. البته چند نسخه جانبی از جمله ، نسخه Express  و Team هم وجود دارند که ویژگیها و قیمت های مختلفی دارند.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Definições framework .NET]]></title>
<link>http://tomazeli.wordpress.com/2008/10/04/definicoes-framework-net/</link>
<pubDate>Fri, 03 Oct 2008 19:04:13 +0000</pubDate>
<dc:creator>tomazeli</dc:creator>
<guid>http://tomazeli.wordpress.com/2008/10/04/definicoes-framework-net/</guid>
<description><![CDATA[Olá pessoal hoje trarei algumas definições do framework .NET que muitas vezes iniciantes tem muita d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Olá pessoal hoje trarei algumas definições do framework .NET que muitas vezes iniciantes tem muita dificuldades em entender. Vamos lá:</p>
<ul>
<li>Classe (class): Conjunto de caracteristicas e ações.</li>
<li>Método (method): Comportamentos ou ações.</li>
<li>Eventos (events): Ações que deverão ser controladas pelos métodos.</li>
<li>Objeto (object): Uma classe quando estanciada e fornecida atributos.</li>
<li>Propiedades (properties): Servirão para manipular as caracteristicas (atributos)</li>
</ul>
<p>Por tanto se imaginarmos que temos uma classe chamada <strong>Pessoa </strong>com caracteristicas(atributos) que serão <strong>nome, email, idade e etc </strong>e os métodos (ações) dessa classe seriam <strong>andar, falar e etc.</strong></p>
<p>Um abraço e até a próxima&#8230;</p>
<p>Lineker Tomazeli</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Framework .NET novidades e como funciona...]]></title>
<link>http://tomazeli.wordpress.com/2008/09/30/framework-net-novidades-e-como-funciona/</link>
<pubDate>Mon, 29 Sep 2008 22:05:25 +0000</pubDate>
<dc:creator>tomazeli</dc:creator>
<guid>http://tomazeli.wordpress.com/2008/09/30/framework-net-novidades-e-como-funciona/</guid>
<description><![CDATA[Olá pessoal, depois de uma temporada sem post estamos de volta com uma serie de dicas sobre a tecnol]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Olá pessoal, depois de uma temporada sem post estamos de volta com uma serie de dicas sobre a tecnologia .NET da Microsoft.<br />
Peço desculpas por ter estado ausente mas acreditem, foram por forças maiores.</p>
<p>Mas vamos lá, hoje explicarei um pouquinho de como funciona a linguagem interpretada e sua vantagens.</p>
<p>Para começar vamos entender alguns conceitos:<br />
- A familia .NET esta toda baseada na CLS ( Common Language Specification ) que são as regras que se deve seguir para que o interpretador possa interpretar o seu codigo para liguagem de maquina ( binary code ou native code ) e assim a máquina possa fazer o que voçê solicitou.</p>
<p>Vamos analizar o diagrama:</p>
<div><img style="max-width:800px;" src="http://tomazeli.files.wordpress.com/2008/09/clr.jpg?w=483&#038;h=263" alt="" width="483" height="263" /></p>
<div>Por tanto você escreve seu codigo e compila ele com o seu respectivo compilador e voçê terá como resultado o MSIL code ( Microsoft Intermediare Language ou Assembly ) que nada mais é seu .exe se for winforms ou .dll se for webforms e assim quando for a hora ele sera interpretado e passado para binary code ( codigo que utiliza somente 1 e 0. ex: 00110101)</p>
<p>Mas dai vem a pergunta mas qual a diferença da linguagem compilada?<br />
Bom uma das grandes desvantagens das liguagens compiladas é que se você faz seu programa e compila no seu computador que é um pentium 3 e então você troca seu pentium 3 por um duo core achando que o processamento será mais rápido, você se engana, pois ele terá o mesmo desempenho que o pentium 3, pois o codigo foi compilado para aquele hardware. Já a linguagem interpretada, como ela é compilada na hora da execução, ela é compilada para o hardware do momento podendo utilizar todo o recurso disponível.</p>
<p>Outras novidades e dicas do framework são:</p>
<ul>
<li>Garbage Collection : É um mecanismo que já vem por default no framework que fica checando para ver senão existem variáveis que não estão sendo utilizadas na memória e as retira para economizar recursos.</li>
<li>Namespaces: Nada mais é do que um agrupador lógico de classes.</li>
<li>Multithread: Você pode iniciar multiplos processos ao mesmo tempo. Veremos isso num proximo post.</li>
</ul>
<p>Bom gente espero que tenha esclarecido um pouco este assunto.</p>
<p>Lineker Tomazeli</p></div>
</div>
<p>Categorias do Technorati <a class="performancingtags" rel="tag" href="http://technorati.com/tag/.NET">.NET</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Dev">Dev</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dot Net EBOOK FREE Download]]></title>
<link>http://programmingebook.wordpress.com/2008/09/19/dot-net-ebook-free-download/</link>
<pubDate>Fri, 19 Sep 2008 15:14:44 +0000</pubDate>
<dc:creator>mongther4</dc:creator>
<guid>http://programmingebook.wordpress.com/2008/09/19/dot-net-ebook-free-download/</guid>
<description><![CDATA[Download EBOOK Free at www.eBooks-Space.com .NET 2.0 for Delphi Programmers ZIP eBook File &#8220;6.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Download EBOOK Free at <a href="http://www.eBooks-Space.com">www.eBooks-Space.com</a></p>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/1014/.NET-2.0-for-Delphi-Programmers.html" target="_blank">.NET 2.0 for Delphi Programmers</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;6.34 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [6]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>.NET 2.0 for Delphi Programmers explores .NET from a Delphi programmer&#8217;s viewpoint, and it is ideal for Delphi programmers moving to .NET.</p>
<p>It presents the core concepts of the .NET world in terms you are familiar with. This book will help you with Delphi for .NET as well as C#.</p>
<p>Apress publishes migration books for both VB 6 and C++ programmers moving to .NET. Consider this the Delphi instal &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/delphi">delphi</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/programmer">programmer</a></p>
<p><a href="http://www.ebooks-space.com/ebook/1014/.NET-2.0-for-Delphi-Programmers.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/.NET%202.0%20for%20Delphi%20Programmers_2008_09_14_07_18_45.jpg" border="1" alt="Download Free .NET 2.0 for Delphi Programmers ebook" width="120" /></td>
</tr>
</tbody>
</table>
<p> </p>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/1008/Building-Websites-with-VB.NET-and-DotNetNuke-4.html" target="_blank">Building Websites with VB.NET and DotNetNuke 4</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;6.30 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [10]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Revised and updated for DotNetNuke 4, this renowned book is your indispensable guide to creating content-rich websites with DotNetNuke, as quickly as possible.</p>
<p>This is the only book to provide in-depth coverage of the DAL+, an extended feature set of the DotNetNuke Data Access Layer (DAL) introduced in version 4.3 of DotNetNuke that makes developing custom modules fast and easy.</p>
<p>This book co &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/vb.net">vb.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/dotnetnuke">dotnetnuke</a></p>
<p><a href="http://www.ebooks-space.com/ebook/1008/Building-Websites-with-VB.NET-and-DotNetNuke-4.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Building%20Websites%20with%20VB.NET%20and%20DotNetNuke%204_2008_09_13_06_30_23.jpg" border="1" alt="Download Free Building Websites with VB.NET and DotNetNuke 4 ebook" width="120" /></td>
</tr>
</tbody>
</table>
<p> </p>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/997/Professional-ADO.NET-2%3A-Programming-with-SQL-Server-2005-Oracle-and-MySQL.html" target="_blank">Professional ADO.NET 2: Programming with SQL Server 2005 Oracle and MySQL</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;4.76 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [17]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>ADO.NET revolutionized the way data was accessed through SQL Server, Oracle, and MySQL.</p>
<p>With Microsoft&#8217;s release of ADO.NET 2, ADO and the .NET Framework are integrated with SQL Server for the first time-enabling you to program .NET applications directly within the SQL Server database.</p>
<p>Packed with sample code and recommended best practices for using ADO.NET 2, this code-intensive book expl &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/ado.net">ado.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/sql-server">sql-server</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/oracle">oracle</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/mysql">mysql</a></p>
<p><a href="http://www.ebooks-space.com/ebook/997/Professional-ADO.NET-2%3A-Programming-with-SQL-Server-2005-Oracle-and-MySQL.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Professional%20ADO.NET%202:%20Programming%20with%20SQL%20Server%202005%20Oracle%20and%20MySQL_2008_09_13_05_28_35.jpg" border="1" alt="Programming with SQL Server 2005 Oracle and MySQL ebook" width="120" /></td>
</tr>
</tbody>
</table>
<p> </p>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/993/Pro-ASP.NET-2.0-in-C%2523-2005.html" target="_blank">Pro ASP.NET 2.0 in C# 2005</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;21.41 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [36]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>ASP.NET 2.0 is the latest version of Microsoft&#8217;s current ASP.NET 1.1 technology.</p>
<p>ASP.NET 1.1 is fast becoming the accepted technology standard for creating dynamic web pages on the Windows platform, and is now used across the board from start-ups to blue-chip multi-national corporations.</p>
<p>ASP.NET 2.0 is building on this solid foundation and adding new improvements.</p>
<p>The new technology wi &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/asp.net">asp.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/c#">c#</a></p>
<p><a href="http://www.ebooks-space.com/ebook/993/Pro-ASP.NET-2.0-in-C%2523-2005.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Pro%20ASP.NET%202.0%20in%20C%202005_2008_09_11_10_20_09.jpg" border="1" alt="Download Free Pro ASP.NET 2.0 in C# 2005 ebook" width="120" /></td>
</tr>
</tbody>
</table>
<p> </p>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/941/Learning-ASP.NET-3.5.html" target="_blank">Learning ASP.NET 3.5</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;11.48 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [201]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>With this book, you will learn how to create engaging and interactive web applications using the latest version of the world&#8217;s most popular web development platform: ASP.NET with AJAX, built on the productivity-enhancing features of Visual Studio 2008.</p>
<p>All you need to get started is a basic knowledge of HTML and a desire to produce professional quality websites.</p>
<p>Learning ASP.NET 3.5 introd &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/asp.net">asp.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a></p>
<p><a href="http://www.ebooks-space.com/ebook/941/Learning-ASP.NET-3.5.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Learning%20ASP.NET%203.5_2008_09_05_05_18_56.jpg" border="1" alt="Download Free Learning ASP.NET 3.5 ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/938/Pro-.NET-2.0-Extreme-Programming.html" target="_blank">Pro .NET 2.0 Extreme Programming</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;6.66 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [24]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>The target audience for this title are current .NET 1.1 developers and future .NET 2.0 developers who need to put Extreme Programming (XP) into practice.</p>
<p>While other Extreme Programming books are usually theoretical in approach, this book takes the reader through the practical application of Extreme Programming with code-level solutions.</p>
<p>It shows the reader how to apply the XP principles i &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/extreme">extreme</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/programming">programming</a></p>
<p><a href="http://www.ebooks-space.com/ebook/938/Pro-.NET-2.0-Extreme-Programming.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Pro%20.NET%202.0%20Extreme%20Programming_2008_09_04_09_18_27.jpg" border="1" alt="Download Free Pro .NET 2.0 Extreme Programming ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/932/Advanced-ASP.NET-AJAX-Server-Controls-For-.NET-Framework-3.5.html" target="_blank">Advanced ASP.NET AJAX Server Controls For .NET Framework 3.5</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;5.89 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [51]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>ASP.NET AJAX server controls can encapsulate even the most powerful AJAX functionality, helping you build more elegant, maintainable, and scalable applications.</p>
<p>This is the first comprehensive, code-rich guide to custom ASP.NET AJAX server controls for experienced ASP.NET developers.</p>
<p>Unlike other books on ASP.NET AJAX, this book focuses solely on server control development and reflects the &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/asp.net">asp.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/ajax">ajax</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/framework">framework</a></p>
<p><a href="http://www.ebooks-space.com/ebook/932/Advanced-ASP.NET-AJAX-Server-Controls-For-.NET-Framework-3.5.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Advanced%20ASP.NET%20AJAX%20Server%20Controls%20For%20.NET%20Framework%203.5_2008_09_04_08_25_25.jpg" border="1" alt="Download Free Advanced ASP.NET AJAX Server Controls For .NET Framework 3.5 ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/889/Practical-Software-Factories-in-.NET.html" target="_blank">Practical Software Factories in .NET</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;7.75 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [33]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>The promise of Software Factories is to streamline and automate software development-and thus to produce higher-quality software more efficiently.</p>
<p>The key idea is to promote systematic reuse at all levels and exploit economies of scope, which translates into concrete savings in planning, development, and maintenance efforts.</p>
<p>However, the theory behind Software Factories can be overwhelming &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/practical">practical</a></p>
<p><a href="http://www.ebooks-space.com/ebook/889/Practical-Software-Factories-in-.NET.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Practical%20Software%20Factories%20in%20.NET_2008_08_29_05_41_34.jpg" border="1" alt="Download Free Practical Software Factories in .NET ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/866/Visual-Basic-.NET-Black-Book.html" target="_blank">Visual Basic .NET Black Book</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;7.27 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [119]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Visual Basic .NET Black Book is a comprehensive reference and problem-solving guide for Visual Basic programmers.</p>
<p>It covers Visual Basic .NET tips, examples, and how-to&#8217;s on everything from programming to managing Visual Basic applications.</p>
<p>It provides in-depth material on the new object-oriented features of Visual Basic .NET.</p>
<p>Plus readers will learn the crucial Visual Basic tool set i &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/vb">vb</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/vb.net">vb.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/visual-basic">visual-basic</a></p>
<p><a href="http://www.ebooks-space.com/ebook/866/Visual-Basic-.NET-Black-Book.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Visual%20Basic%20.NET%20Black%20Book_2008_08_26_08_00_44.jpg" border="1" alt="Download Free Visual Basic .NET Black Book ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/840/ASP.NET-2.0-Instant-Results.html" target="_blank">ASP.NET 2.0 Instant Results</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;6.26 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [77]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>ASP.NET 2.0 Instant Results helps you quickly create dynamic Web pages with ASP.NET 2.0.</p>
<p>The book is centered around a dozen ready-to-use projects with all the code for all the projects included on the books CD-ROM &#8211; that you can use immediately.</p>
<p>ASP.NET 2.0 Instant Results dives into working code so you can learn it rapidly.</p>
<p>The book and projects are written for intermediate-level pro &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/asp.net">asp.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a></p>
<p><a href="http://www.ebooks-space.com/ebook/840/ASP.NET-2.0-Instant-Results.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/ASP.NET%202.0%20Instant%20Results_2008_08_21_07_20_49.jpg" border="1" alt="Download Free ASP.NET 2.0 Instant Results ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/818/Building-Solutions-with-the-Microsoft-.NET-Compact-Framework.html" target="_blank">Building Solutions with the Microsoft .NET Compact Framework</a></h2>
<p><a class="text_yello">CHM eBook File </a><a class="text_blue"><em>&#8220;1.96 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [195]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Building Solutions with the Microsoft .NET Compact Framework: Architecture and Best Practices for Mobile Development</p>
<p>Whether you are an architect, developer, or manager, Building Solutions with the Microsoft .NET Compact Framework is your guide to creating effective solutions for mobile devices with .NET.</p>
<p>Authors Dan Fox and Jon Box walk you through four essential architectural concepts and &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/compact-framework">compact-framework</a></p>
<p><a href="http://www.ebooks-space.com/ebook/818/Building-Solutions-with-the-Microsoft-.NET-Compact-Framework.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Building%20Solutions%20with%20the%20Microsoft%20.NET%20Compact%20Framework_2008_08_19_08_45_49.jpg" border="1" alt="Download Free Building Solutions with the Microsoft .NET Compact Framework ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/812/Applied-Microsoft-.NET-Framework-Programming-in-Microsoft-Visual-Basic-.NET.html" target="_blank">Applied Microsoft .NET Framework Programming in Microsoft Visual Basic .NET</a></h2>
<p><a class="text_yello">PDF eBook File </a><a class="text_blue"><em>&#8220;4.42 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [51]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>This book by two popular developer/writers takes advanced developers and software designers who use Visual Basic under the covers of the Microsoft .NET Platform to provide an in-depth understanding of its structure, function, and operational components.</p>
<p>Developers get an in-depth understanding of the technology&#8217;s structure and function so they can make informed application design choices.</p>
<p>&#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/.net">.net</a> , <a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/vb">vb</a></p>
<p><a href="http://www.ebooks-space.com/ebook/812/Applied-Microsoft-.NET-Framework-Programming-in-Microsoft-Visual-Basic-.NET.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Applied%20Microsoft%20.NET%20Framework%20Programming%20in%20Microsoft%20Visual%20Basic%20.NET_2008_08_18_12_20_43.jpg" border="1" alt="Download Free Applied Microsoft .NET Framework Programming in Microsoft Visual Basic .NET ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/802/Data-Binding-with-Windows-Forms-2.0-Programming-Smart-Client-Data-Applications.html" target="_blank">Data Binding with Windows Forms 2.0 Programming Smart Client Data Applications</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;5.92 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [47]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Data binding is the most important part of many business applicationsกชand one of the most difficult things to understand.</p>
<p>Data Binding with Windows Forms 2.0 is the first book to focus on this crucial area of development.</p>
<p>It will quickly get you up to speed on binding data sources to Windows Forms components.</p>
<p>The book contains clear examples in C# that work with SQL Server &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/802/Data-Binding-with-Windows-Forms-2.0-Programming-Smart-Client-Data-Applications.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Data%20Binding%20with%20Windows%20Forms%202.0%20Programming%20Smart%20Client%20Data%20Applications_2008_08_15_21_42_36.jpg" border="1" alt="Download Free Data Binding with Windows Forms 2.0 Programming Smart Client Data Applications ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/777/Best-Kept-Secrets-in-.NET.html" target="_blank">Best Kept Secrets in .NET</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;8.48 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [85]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Author Deborah Kurata has spoken to .NET user groups all over America sharing her &#8220;Best Kept Secrets in .NET,&#8221; and she often hears experienced developers say, &#8220;I didnt know you could do that with .NET!&#8221; This book is a collection of Deborahs insights into .NET secrets that can enhance your productivity and code quality.</p>
<p>For example, did you know that you could manage code snippets in Visual Stud &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/777/Best-Kept-Secrets-in-.NET.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Best%20Kept%20Secrets%20in%20.NET_2008_08_13_06_27_30.jpg" border="1" alt="Download Free Best Kept Secrets in .NET ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/774/Microsoft-.NET-XML-Web-Services-.html" target="_blank">Microsoft .NET XML Web Services </a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;9.50 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [40]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>This book will therefore serve as both an introductory title and an in-depth reference that will grow with the reader as they begin to create their own Web Services.</p>
<p>They will come to understand what Web Services are, where they fit into the &#8216;big picture&#8217; and will have many coding examples to choose from within the first five chapters.</p>
<p>As they begin to &#8220;get serious&#8221; about developing enterp &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/774/Microsoft-.NET-XML-Web-Services-.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Microsoft%20.NET%20XML%20Web%20Services%20_2008_08_12_09_04_20.jpg" border="1" alt="Download Free Microsoft .NET XML Web Services  ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/735/Developing-Applications-with-Visual-Studio.NET.html" target="_blank">Developing Applications with Visual Studio.NET</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;3.40 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [50]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>DEVELOPING APPLICATIONS WITH VISUAL STUDIO.NET is an in-depth guide that takes Windows programming to the next level: creating .NET applications that leverage the prior knowledge and experience of C++ Win32 programmers.</p>
<p>The .NET Framework supplies programmers with rich standard run-time services, supports the development of Web-based services, and provides both inter-language and inter-machine &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/735/Developing-Applications-with-Visual-Studio.NET.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Developing%20Applications%20with%20Visual%20Studio.NET_2008_08_08_08_12_15.jpg" border="1" alt="Download Free Developing Applications with Visual Studio.NET ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/722/How-to-Code-.NET%3A-Tips-and-Tricks-for-Coding-.NET.html" target="_blank">How to Code .NET: Tips and Tricks for Coding .NET</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;1.41 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [88]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>&#8220;How to Code .NET: Tips and Tricks for Coding .NET 1.1 and .NET 2.0 Applications Effectively&#8221;</p>
<p>What is good code? Writing good code is really a question about what the code is trying to solve.</p>
<p>(And good code is not to be confused with patterns&#8211;because not all pieces of good code are patterns.)</p>
<p>We debate about good code because there is not just a single piece of good code, but so many g &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/722/How-to-Code-.NET%3A-Tips-and-Tricks-for-Coding-.NET.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/How%20to%20Code%20.NET:%20Tips%20and%20Tricks%20for%20Coding%20.NET_2008_08_06_07_27_39.jpg" border="1" alt="Tips and Tricks for Coding .NET ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/703/Event-Based-Programming%3A-Taking-Events-to-the-Limit.html" target="_blank">Event-Based Programming: Taking Events to the Limit</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;4.41 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [61]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Languages like C#, VB .NET, and Delphi include built-in support for events, and these events become very powerful when they connect the objects and components of a system.</p>
<p>Events make it possible for such parts to interact without any coupling.</p>
<p>And the resulting parts can be developed and tested individually&#8211;which keeps the code clean and simple.</p>
<p>Component-based development (CBD) is an &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/703/Event-Based-Programming%3A-Taking-Events-to-the-Limit.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Event-Based%20Programming:%20Taking%20Events%20to%20the%20Limit_2008_08_01_19_13_08.jpg" border="1" alt="Taking Events to the Limit ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/694/Build-Your-Own-ASP.NET-2.0-Web-Site-Using-C%2523-and-VB.html" target="_blank">Build Your Own ASP.NET 2.0 Web Site Using C# and VB</a></h2>
<p><a class="text_yello">ZIP eBook File </a><a class="text_blue"><em>&#8220;12.72 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [114]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>Learn how to build impressive ASP.NET 2.0 Websites in both C# and VB from scratch.</p>
<p>Using a practical step-by-step approach, the authors introduce the ASP.NET framework, teach you about database design, and walk you through obtaining, installing and configuring all the freely available software you need to use ASP.NET 2.0.</p>
<p>They then show you how to build several real world Web-based applica &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/694/Build-Your-Own-ASP.NET-2.0-Web-Site-Using-C%2523-and-VB.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/Build%20Your%20Own%20ASP.NET%202.0%20Web%20Site%20Using%20C%20and%20VB_2008_08_01_18_36_57.jpg" border="1" alt="Download Free Build Your Own ASP.NET 2.0 Web Site Using C# and VB ebook" width="120" /></td>
</tr>
</tbody>
</table>
<table class="table_line" style="height:155px;" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td style="font-size:12px;" valign="top">
<h2><a class="yellow_h2" href="http://www.ebooks-space.com/ebook/685/.NET-Domain-Driven-Design-with-C%2523.html" target="_blank">.NET Domain-Driven Design with C#</a></h2>
<p><a class="text_yello">PDF eBook File </a><a class="text_blue"><em>&#8220;6.70 MB&#8221;</em> </a><a class="text_yello">, eBook Downloads [47]</a>   <!-- AddThis Button BEGIN --><a href="blank"></a><!-- AddThis Button END --></p>
<p>&#8220;.NET Domain-Driven Design with C#: Problem-Design-Solution&#8221;</p>
<p>As the first technical book of its kind, this unique resource walks you through the process of building a real-world application usingDomain-Driven Design implemented in C#.</p>
<p>Based on a real application for an existing company, the project featured throughout the book focuses on the Domain Model and the framework that is being buil &#8230;<a class="text_yello">eBook Tags &#8211; </a><a class="text_blue" href="http://www.ebooks-space.com/ebook-tags/"></a></p>
<p><a href="http://www.ebooks-space.com/ebook/685/.NET-Domain-Driven-Design-with-C%2523.html" target="_blank"><strong>Download eBook Free</strong> »</a></td>
<td width="130" align="right" valign="top"><img src="http://www.ebooks-space.com/cover/.NET%20Domain-Driven%20Design%20with%20C_2008_08_01_18_09_54.jpg" border="1" alt="Download Free .NET Domain-Driven Design with C# ebook" width="120" /></td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ASP.Net 3.5 Sample Application of LINQ, WFC, JSON and AJAX]]></title>
<link>http://pythonyan.wordpress.com/2008/09/09/aspnet-35-sample-application-of-linq-wfc-json-and-ajax/</link>
<pubDate>Tue, 09 Sep 2008 07:23:33 +0000</pubDate>
<dc:creator>pythonyan</dc:creator>
<guid>http://pythonyan.wordpress.com/2008/09/09/aspnet-35-sample-application-of-linq-wfc-json-and-ajax/</guid>
<description><![CDATA[DA CodeProject un articolo su alcune nuove funzionalità del framework 3.5 di casa Microsoft.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>DA CodeProject un <a href="http://http://www.codeproject.com/KB/aspnet/WelcomeToTheNew.aspx">articolo </a>su alcune nuove funzionalità del framework 3.5 di casa Microsoft.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Descarga de componentes .NET]]></title>
<link>http://dotnetjumper.wordpress.com/2008/08/06/descarga-de-componentes-net/</link>
<pubDate>Wed, 06 Aug 2008 21:41:48 +0000</pubDate>
<dc:creator>Alex</dc:creator>
<guid>http://dotnetjumper.wordpress.com/2008/08/06/descarga-de-componentes-net/</guid>
<description><![CDATA[Microsoft Visual Studio 2008 Service Pack 1 Beta Con este SP obtenemos las siguientes mejoras y cara]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="Ttulo13" style="margin:auto 0 4.7pt;"><strong><span style="font-size:12pt;color:#339966;font-family:Arial;" lang="EN-GB">Microsoft Visual Studio 2008 Service Pack 1 Beta</span></strong></p>
<p class="Ttulo13" style="margin:auto 0 4.7pt;"><span style="font-size:12pt;font-family:Arial;">Con este SP obtenemos las siguientes mejoras y características:</span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;" lang="EN-GB"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;" lang="EN-GB">.NET Framework Client Release (“Arrowhead”) </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">ASP.NET Dynamic Data </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">ASP.NET Routing </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">ADO.NET Data Services </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">ADO.NET Entity Framework </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"><a href="http://www.microsoft.com/downloads/details.aspx?familyid=CF99C752-1391-4BC3-BABC-86BC0B9E8E5A&#38;displaylang=en"><span style="color:#800080;">http://www.microsoft.com/downloads/details.aspx?familyid=CF99C752-1391-4BC3-BABC-86BC0B9E8E5A&#38;displaylang=en</span></a></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
<p><!--more Seguir leyendo--></p>
<h2 style="margin:auto 0;"><span style="font-size:12pt;color:#339966;font-family:Arial;" lang="EN">Visual Studio 2008 Training Kit </span></h2>
<p><span style="font-family:Arial;">Con este kit de entrenamiento podremos aprender y mejorar nuestras habilidades en las siguientes etnologías del .NET framework :</span></p>
<ul type="disc">
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">LINQ </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">C# 3.0 </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">Visual Basic 9 </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">WCF </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">WF </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">WPF </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">ASP.NET AJAX </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">VSTO </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">Cardspace </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">Silverlight </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">Mobile </span></li>
<li class="MsoNormal"><span style="font-family:Arial;" lang="EN">Application Lifecycle Management</span></li>
</ul>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN"><a href="http://go.microsoft.com/?linkid=7602397"><span style="color:#800080;">Training Kit de Visual Studio 2008 y .NET Framework 3.5</span></a>. </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN-GB"> </span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="color:#339966;font-family:Arial;">.NET 3.5 Enhancements Training Kit</span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;">El siguiente contiene el Kit de entrenamiento correspondiente a las nuevas adiciones que trae el SP1 de .NET 3.5 y cubre los siguientes aspectos:</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
<p><span style="font-family:Arial;" lang="EN">1)      ADO.NET Data Services<br />
2)      ADO.NET Entity Framework<br />
3)      ASP.NET AJAX History<br />
4)      ASP.NET Dynamic Data<br />
5)      ASP.NET MVC<br />
6)      ASP.NET Silverlight controls<br />
</span></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#1f497d;font-family:Arial;" lang="EN-US"><a href="http://go.microsoft.com/?linkid=7602397"><span style="color:#800080;">http://go.microsoft.com/?linkid=7602397</span></a>.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN-GB"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN-GB"> </span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="color:#339966;font-family:Arial;" lang="EN-GB">Microsoft ASP.NET 2.0 </span></strong><strong><span style="color:#339966;font-family:Arial;" lang="EN-GB">AJAX</span></strong><strong><span style="color:#339966;font-family:Arial;" lang="EN-GB"> Extensions 1.0</span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN-GB"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;">Provee el framework que nos permite desarrollar aplicaciones con AJAX</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&#38;displaylang=en" target="_blank"><span lang="EN-GB">Microsoft ASP .Net 2.0 AJAX Extensions 1.0</span></a></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;" lang="EN-GB"> </span></p>
<p><span style="font-family:Arial;"> </span><strong><span style="color:#339966;font-family:Arial;">ASP.NET 3.5 Extensions Preview</span></strong></p>
<p><span style="font-family:Arial;">Provee las nuevas funcionalidades agregadas recientemente a ASP.NET 3.5 y a ADO.NET.</span></p>
<p class="MsoNormal" style="margin:0 0 0 18pt;"><span style="font-family:Arial;">El mismo incluye agrega las siguientes características:</span></p>
<ul type="disc">
<li class="MsoNormal"><span style="font-family:Arial;"><span> </span>ASP.NET MVC </span></li>
<li class="MsoNormal"><span style="font-family:Arial;">ASP.NET Dynamic Data </span></li>
<li class="MsoNormal"><span style="font-family:Arial;">Controles Silverlight para ASP.NET </span></li>
<li class="MsoNormal"><span style="font-family:Arial;">ADO.NET Data Services </span></li>
<li class="MsoNormal"><span style="font-family:Arial;">Entity Framework runtime </span></li>
<li class="MsoNormal"><span style="font-family:Arial;">Nuevas características para ASP.NET AJAX </span></li>
</ul>
<p><strong><span style="font-family:Arial;"><a title="http://www.microsoft.com/downloads/details.aspx?FamilyId=A9C6BC06-B894-4B11-8300-35BD2F8FC908&#38;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=A9C6BC06-B894-4B11-8300-35BD2F8FC908&#38;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=A9C6BC06-B894-4B11-8300-35BD2F8FC908&#38;displaylang=en</a></span></strong></p>
<p><strong><span style="font-family:Arial;"> </span></strong></p>
<p><strong><span style="color:#339966;font-family:Arial;" lang="EN-GB">Microsoft Silverlight Tools Beta 2 para Visual Studio 2008</span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;">Este paquete es un complemento que pone a su disposición herramientas para Microsoft Silverlight 2 Beta 2. Se puede instalar sobre Visual Studio 2008 RTM o Visual Studio2008 Service Pack Beta y proporciona un sistema de proyectos de Silverlight para desarrollar aplicaciones de Silverlight usando C# o Visual Basic.</span></p>
<p>Con el paquete se instalaran los siguientes componentes:</p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Silverlight 2 Beta 2 </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">SDK de Silverlight 2 Beta 2 </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">KB950630 para Visual Studio 2008 RTM o KB950632 para Visual Studio 2008 SP Beta </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;" lang="EN-GB"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;" lang="EN-GB">Silverlight Tools Beta 2 para Visual Studio 2008</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"><br />
Con la instalación obtenemos lo siguiente:</span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Plantillas de proyecto de Visual Basic y C# </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">IntelliSense y generadores de código para XAML </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Depuración de aplicaciones de Silverlight </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Compatibilidad con referencias web </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Plantillas de WCF </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Compatibilidad con Team Build y con sintaxis de línea de comandos </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Integración con Expression Blend </span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 0 54.7pt;"><span style="font-size:10pt;font-family:Symbol;"><span>·<span style="font:7pt &#34;"> </span></span></span><span style="font-family:Arial;">Instalación simplificada</span></p>
<p><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-family:Arial;"> </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta]]></title>
<link>http://scriptforall.wordpress.com/2008/06/22/visual-studio-2008-and-net-framework-35-service-pack-1-beta/</link>
<pubDate>Sun, 22 Jun 2008 05:39:57 +0000</pubDate>
<dc:creator>kostland</dc:creator>
<guid>http://scriptforall.wordpress.com/2008/06/22/visual-studio-2008-and-net-framework-35-service-pack-1-beta/</guid>
<description><![CDATA[There is no doubt that VS 2008 and .NET 3.5  totally rocks! ScottGu&#8217;s division keeps pushing t]]></description>
<content:encoded><![CDATA[There is no doubt that VS 2008 and .NET 3.5  totally rocks! ScottGu&#8217;s division keeps pushing t]]></content:encoded>
</item>
<item>
<title><![CDATA[Kit de capacitación de mejoras de NET 3.5 ]]></title>
<link>http://gerardoramosun.wordpress.com/2008/05/29/kit-de-capacitacion-de-mejoras-de-net-35/</link>
<pubDate>Thu, 29 May 2008 21:12:43 +0000</pubDate>
<dc:creator>Gerardo</dc:creator>
<guid>http://gerardoramosun.wordpress.com/2008/05/29/kit-de-capacitacion-de-mejoras-de-net-35/</guid>
<description><![CDATA[Buenas!!! El Kit de capacitación de mejoras de .NET 3.5 comprende las tecnologías de la versión .NET]]></description>
<content:encoded><![CDATA[Buenas!!! El Kit de capacitación de mejoras de .NET 3.5 comprende las tecnologías de la versión .NET]]></content:encoded>
</item>
<item>
<title><![CDATA[Algumas coisas legais do Visual Basic .Net 9.0 - 2008]]></title>
<link>http://alexandretarifa.wordpress.com/2008/05/17/algumas-coisas-legais-do-visual-basic-net-90-2008/</link>
<pubDate>Sat, 17 May 2008 15:50:21 +0000</pubDate>
<dc:creator>aletarifa</dc:creator>
<guid>http://alexandretarifa.wordpress.com/2008/05/17/algumas-coisas-legais-do-visual-basic-net-90-2008/</guid>
<description><![CDATA[Vem ai mais uma versão do Visual Basic! Junto com a nova versão do Framework, a versão 3.5 temos alg]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="snap_preview">
<p><span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Vem ai mais uma versão do Visual Basic! Junto com a nova versão do Framework, a versão 3.5 temos algumas implementações interessantes em uma das linguagens mais utilizadas do mundo.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-family:Calibri;"><span style="font-size:11pt;">Um pouco de história<!--l namespace="" ns="urn:schemas-microsoft-com:office:office"                 prefix="o"--></span></span></strong></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">O Visual Basic foi totalmente refeito com o lançamento da plataforma .Net, e desde então continuou evoluindo junto com o Framework. Atrelado a versão 1.1 do Framework tínhamos o VB 7, e com a versão 2.0 ou VB 8 ou Visual Basic 2005.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">A evolução do Framework é significativa, já que em 2002 tivemos o lançamento da versão 1.0 e apenas 5 anos depois já estamos na versão 3.5.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Veja a tabela desta evolução:</span></p>
<table class="MsoTableMediumShading2Accent6" style="font-size:11pt;font-family:Calibri;border-collapse:collapse;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-top:windowtext 2.25pt solid;border-left-color:#ece9d8;background:#f79646;width:79.85pt;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="106" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">    </span></strong></p>
</td>
<td style="border-top:windowtext 2.25pt solid;border-left-color:#ece9d8;background:#f79646;width:72.4pt;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">2002</span></strong></p>
</td>
<td style="border-top:windowtext 2.25pt solid;border-left-color:#ece9d8;background:#f79646;width:72.4pt;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">2003</span></strong></p>
</td>
<td style="border-top:windowtext 2.25pt solid;border-left-color:#ece9d8;background:#f79646;width:72.4pt;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">2005</span></strong></p>
</td>
<td style="border-top:windowtext 2.25pt solid;border-left-color:#ece9d8;background:#f79646;width:72.4pt;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">2006</span></strong></p>
</td>
<td style="border-top:windowtext 2.25pt solid;border-left-color:#ece9d8;background:#f79646;width:66.55pt;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="89" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">2008</span></strong></p>
</td>
</tr>
<tr>
<td style="background:#f79646;width:79.85pt;border-color:#ece9d8;padding:0 5.4pt;" width="106" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">Visual Studio</span></strong></p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VS 2002</p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VS 2003</p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VS 2005</p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VS 2005 + Add In</p>
</td>
<td style="background:#d8d8d8;width:66.55pt;border-color:#ece9d8;padding:0 5.4pt;" width="89" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VS 2008 <sup>beta</sup></p>
</td>
</tr>
<tr>
<td style="background:#f79646;width:79.85pt;border-color:#ece9d8;padding:0 5.4pt;" width="106" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">Linguagens</span></strong></p>
</td>
<td style="width:72.4pt;background-color:transparent;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VB 7.0</p>
<p class="MsoNormal" style="line-height:normal;margin:0;">C# 1.0</p>
</td>
<td style="width:72.4pt;background-color:transparent;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VB 7.1</p>
<p class="MsoNormal" style="line-height:normal;margin:0;">C# 1.1</p>
</td>
<td style="width:72.4pt;background-color:transparent;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VB 8.0</p>
<p class="MsoNormal" style="line-height:normal;margin:0;">C# 2.0</p>
</td>
<td style="width:72.4pt;background-color:transparent;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VB 8.0<br />
C# 2.0</p>
</td>
<td style="width:66.55pt;background-color:transparent;border-color:#ece9d8;padding:0 5.4pt;" width="89" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">VB 9.0<br />
C# 3.0</p>
</td>
</tr>
<tr>
<td style="background:#f79646;width:79.85pt;border-color:#ece9d8;padding:0 5.4pt;" width="106" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">Framework </span></strong></p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">1.0</p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">1.1</p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">2.0</p>
</td>
<td style="background:#d8d8d8;width:72.4pt;border-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">3.0</p>
</td>
<td style="background:#d8d8d8;width:66.55pt;border-color:#ece9d8;padding:0 5.4pt;" width="89" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">3.5</p>
</td>
</tr>
<tr>
<td style="border-left-color:#ece9d8;background:#f79646;width:79.85pt;border-top-color:#ece9d8;border-bottom:windowtext 2.25pt solid;border-right-color:#ece9d8;padding:0 5.4pt;" width="106" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;"><strong><span style="color:white;">CLR</span></strong></p>
</td>
<td style="border-left-color:#ece9d8;width:72.4pt;border-top-color:#ece9d8;border-bottom:windowtext 2.25pt solid;background-color:transparent;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">1.0</p>
</td>
<td style="border-left-color:#ece9d8;width:72.4pt;border-top-color:#ece9d8;border-bottom:windowtext 2.25pt solid;background-color:transparent;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">1.1</p>
</td>
<td style="border-left-color:#ece9d8;width:72.4pt;border-top-color:#ece9d8;border-bottom:windowtext 2.25pt solid;background-color:transparent;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">2.0</p>
</td>
<td style="border-left-color:#ece9d8;width:72.4pt;border-top-color:#ece9d8;border-bottom:windowtext 2.25pt solid;background-color:transparent;border-right-color:#ece9d8;padding:0 5.4pt;" width="97" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">2.0</p>
</td>
<td style="border-left-color:#ece9d8;width:66.55pt;border-top-color:#ece9d8;border-bottom:windowtext 2.25pt solid;background-color:transparent;border-right-color:#ece9d8;padding:0 5.4pt;" width="89" valign="top">
<p class="MsoNormal" style="line-height:normal;margin:0;">2.0</p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Podemos acompanhar também a evolução da linguagem depois da Plataforma .Net:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><img src="http://www.linhadecodigo.com.br/artigos/img_artigos/atarifa/VBLegal/fig2.jpg" border="0" alt="" width="368" height="142" /></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Acompanhando as discussões em blogs do time de VB (</span><a href="http://blogs.msdn.com/vbteam" target="_blank"><span style="font-size:11pt;font-family:Calibri;"><span style="color:#6c8c37;">http://blogs.msdn.com/vbteam</span></span></a><span style="font-size:11pt;font-family:Calibri;">) podemos reparar nos seguintes objetivos:</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent:-18pt;margin:0 0 0 36pt;"><span style="font-family:Symbol;"><span><span style="font-size:11pt;">·</span><span style="font:7pt 'Times New Roman';">         </span></span></span><span style="font-size:11pt;font-family:Calibri;">Simplificar ainda mais o código;</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-18pt;margin:0 0 0 36pt;"><span style="font-family:Symbol;"><span><span style="font-size:11pt;">·</span><span style="font:7pt 'Times New Roman';">         </span></span></span><span style="font-size:11pt;font-family:Calibri;">Não ignorar as versões anteriores;</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent:-18pt;margin:0 0 0 36pt;"><span style="font-family:Symbol;"><span><span style="font-size:11pt;">·</span><span style="font:7pt 'Times New Roman';">         </span></span></span><span style="font-size:11pt;font-family:Calibri;">Tornar a linguagem funcional e extensível;</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent:-18pt;margin:0 0 10pt 36pt;"><span style="font-family:Symbol;"><span><span style="font-size:11pt;">·</span><span style="font:7pt 'Times New Roman';">         </span></span></span><span style="font-size:11pt;font-family:Calibri;">Não revolucionar nada.</span></p>
<h2 style="margin:10pt 0 0;"><span style="font-size:13pt;color:#4f81bd;font-family:Cambria;">Inicializadores de Objetos</span></h2>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;"><span style="font-family:Calibri;"><span>                </span>A inicialização de objetos esta presente há muito tempo na linguagem, e parece ser algo inofensivo, algo totalmente sem segredo… se analisarmos um código muito simples, realmente isso é verdade!</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Dim</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> cli <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;"><span style="font-family:Calibri;"><span>                </span>Como disse, sem segredo algum… mas vamos dar uma olhada em um código onde configuramos a propriedade de alguns clientes e adicionando em uma lista de clientes:</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> lista <span style="color:blue;">As</span> <span style="color:blue;">New</span> List(<span style="color:blue;">Of</span> Cliente)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> cli1 <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli1.Nome = <span style="color:#a31515;">“Cliente 1″</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli1.Idade = 28</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(cli1)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> cli2 <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli2.Nome = <span style="color:#a31515;">“Cliente 2″</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli2.Idade = 28</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(cli2)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> cli3 <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli3.Nome = <span style="color:#a31515;">“Cliente 3″</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli3.Idade = 28</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(cli3)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> cli4 <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli4.Nome = <span style="color:#a31515;">“Cliente 4″</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli4.Idade = 28</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(cli4)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> cli5 <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli5.Nome = <span style="color:#a31515;">“Cliente 5″</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">cli5.Idade = 28</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';">lista.Add(cli5)</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">A idéia dos inicializadores de objetos, é através do </span><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">With </span><span style="font-size:11pt;"><span style="font-family:Calibri;">(não é o velho With </span><span style="font-family:Wingdings;"><span>J</span></span><span style="font-family:Calibri;"> ) fazer a inicialização de objetos. </span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Dim</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> cli <span style="color:blue;">As</span> <span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 1″</span>, .Idade = 10}</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Neste caso então, o </span><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">With </span><span style="font-size:11pt;font-family:Calibri;">na seqüência da instância do objeto já disponibiliza as propriedades e já é possível passar os valores.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Se compilarmos o código e decompilar o código, veja o que ocorre (utilizando o reflector &#8211; </span><a href="http://www.aisto.com/roeder/dotnet" target="_blank"><span style="font-size:11pt;font-family:Calibri;"><span style="color:#6c8c37;">http://www.aisto.com/roeder/dotnet</span></span></a><span style="font-size:11pt;font-family:Calibri;">)</span></p>
<pre><span style="font-size:9pt;"><span style="font-family:Segoe UI;"><span style="color:#1000a0;">Dim</span><span>  <strong>VB$t_ref$S0</strong><span style="color:#1000a0;"> As New</span> </span></span></span><a title="ConsoleApplication1.Cliente..ctor()" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://ConsoleApplication1:1.0.0.0/ConsoleApplication1.Cliente/.ctor()" target="_blank"><span style="font-size:9pt;font-family:Segoe UI;"><span style="color:#6c8c37;">Cliente</span></span></a><span><span style="font-size:9pt;"><span style="font-family:Segoe UI;"><span>    </span>
    VB$t_ref$S0.</span></span></span><a title="Property ConsoleApplication1.Cliente.Nome As String" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://ConsoleApplication1:1.0.0.0/ConsoleApplication1.Cliente/property:Nome:String" target="_blank"><span style="font-size:9pt;font-family:Segoe UI;"><span style="color:#6c8c37;">Nome</span></span></a><span style="font-size:9pt;"><span style="font-family:Segoe UI;">   = <span style="color:maroon;">“Cliente 1″</span></span></span><span style="font-size:9pt;"><span style="font-family:Segoe UI;"><span>
    </span>VB$t_ref$S0.</span></span><a title="Property ConsoleApplication1.Cliente.Idade As Integer" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://ConsoleApplication1:1.0.0.0/ConsoleApplication1.Cliente/property:Idade:Int32" target="_blank"><span style="font-size:9pt;font-family:Segoe UI;"><span style="color:#6c8c37;">Idade</span></span></a><span style="font-size:9pt;"><span style="font-family:Segoe UI;">  = <span style="color:maroon;">10</span></span></span></pre>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;"> </span> <span style="font-size:11pt;font-family:Calibri;">Veja que o compilador criou uma variável com um nome estranho e atribuiu os valores da mesma forma que fizemos anteriormente. Ou seja, o código gerado após compilar é idêntico ao que criamos.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">O código completo ficaria assim:</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> lista <span style="color:blue;">As</span> <span style="color:blue;">New</span> List(<span style="color:blue;">Of</span> Cliente)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 1″</span>, .Idade = 10})</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 2″</span>, .Idade = 20})</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 3″</span>, .Idade = 30})</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 4″</span>, .Idade = 12})</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 5″</span>, .Idade = 14})</span></p>
<h2 style="margin:10pt 0 0;"><span style="font-size:13pt;color:#4f81bd;font-family:Cambria;"> </span></h2>
<h2 style="margin:10pt 0 0;"><span style="font-size:13pt;color:#4f81bd;font-family:Cambria;">Inferência de tipos</span></h2>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">As linguagens .Net são fortemente tipadas… isso já é fato desde a versão 1.0 do framework. Porém agora, também temos a inferência do compilador na decisão de qual tipo iremos utilizar… não entenda isso como… deixamos de ser fortemente tipados!</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Normalmente trabalhamos assim:</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> nome <span style="color:blue;">As</span> <span style="color:blue;">String</span> = <span style="color:#a31515;">“Valor String”</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Dim</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> idade <span style="color:blue;">As</span> <span style="color:blue;">Integer</span> = 10</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;"><span style="font-family:Calibri;">Mas agora podemos deixar que o compilador decida por nós </span><span style="font-family:Wingdings;"><span>J</span></span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">O código:</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> nome = <span style="color:#a31515;">“Valor String”</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Dim</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> idade = 10</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span><span style="font-size:11pt;"><span style="font-family:Calibri;">Vamos decompilar e:</span></span></span></p>
<pre><span style="font-size:9pt;"><span style="font-family:Segoe UI;"><span style="color:#1000a0;">Public</span><span> <span style="color:#1000a0;">Shared</span> <span style="color:#1000a0;">Sub</span> </span></span></span><a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://ConsoleApplication1:1.0.0.0/ConsoleApplication1.Module1/Main()" target="_blank"><strong><span style="font-size:9pt;color:black;font-family:Segoe UI;">Main</span></strong></a><span><span style="font-size:9pt;"><span style="font-family:Segoe UI;">()</span></span></span><span style="font-size:9pt;"><span style="font-family:Segoe UI;"><span><span>   </span>
</span><span style="color:#1000a0;">  Dim</span> <strong>nome</strong> <span style="color:#1000a0;">As</span> </span></span><a title="System.String" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String" target="_blank"><span style="font-size:9pt;font-family:Segoe UI;"><span style="color:#6c8c37;">String</span></span></a><span style="font-size:9pt;"><span style="font-family:Segoe UI;"> = <span style="color:maroon;">“Valor String”</span></span></span><span style="font-family:Calibri;"><span style="font-size:11pt;"><span>
  </span><span style="color:#1000a0;">Dim</span> <strong>idade</strong> <span style="color:#1000a0;">As</span> </span></span><a title="System.Int32" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.Int32" target="_blank"><span style="font-size:11pt;font-family:Calibri;"><span style="color:#6c8c37;">Integer</span></span></a><span style="font-family:Calibri;"><span style="font-size:11pt;"> = <span style="color:maroon;">10</span></span></span></pre>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;"><span style="font-family:Calibri;">A mesma coisa </span><span style="font-family:Wingdings;"><span>J</span></span></span></p>
<h2 style="margin:10pt 0 0;"><span style="font-size:13pt;color:#4f81bd;font-family:Cambria;">Métodos de extensão</span></h2>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Podemos também a partir de agora, criar um método de extensão a alguma classe já existente… por exemplo: podemos adicionar um método na classe String, sem herdar a classe ou sobrescrever algo já existente.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span><span style="font-size:11pt;"><span style="font-family:Calibri;">Exemplo:</span></span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">&#60;System.Runtime.CompilerServices.Extension()&#62; _</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Public</span><span style="font-size:10pt;font-family:'Courier New';"> <span style="color:blue;">Sub</span> Exibir(<span style="color:blue;">ByVal</span> s <span style="color:blue;">As</span> <span style="color:blue;">String</span>)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';"><span>  </span>Console.WriteLine(s)</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">End</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> <span style="color:blue;">Sub</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Veja que adicionamos um atributo no médoto (obrigatório) e um parâmetro do tipo string.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Agora, se tivermos uma string:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Dim</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> a <span style="color:blue;">As</span> <span style="color:blue;">String</span> = <span style="color:#a31515;">“Alexandre”</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Podemos chamar o método criado anteriormente:</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';">a.Exibir()</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;"><span style="font-family:Calibri;">Então, é assumido que o parâmetro do método de extensão é o valor atribuído a variável.<span>  </span></span></span></p>
<h2 style="margin:10pt 0 0;"><span><span style="font-size:13pt;"><span style="color:#4f81bd;"><span style="font-family:Cambria;">Linq</span></span></span></span></h2>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">    </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Para quem trabalha com coleções, uma das tarefas mais chatas está associado a navegação trabalhosa entre os itens da lista… ou então, um excesso de carrega, descarrega pra cima e para baixo que acontece durante a execução. O Linq (Language Integrated Query) trás a possibilidade de navegarmos dentro de coleções de objetos. Para saber mais sobre LINQ veja </span><a href="http://msdn2.microsoft.com/en-us/vbasic/aa904594.aspx" target="_blank"><span style="font-size:11pt;font-family:Calibri;"><span style="color:#6c8c37;">aqui</span></span></a><span style="font-size:11pt;font-family:Calibri;">…</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Um exemplo simples, se tivermos uma lista de Clientes (</span><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Dim</span><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"> lista <span style="color:blue;">As</span> <span style="color:blue;">New</span> List(<span style="color:blue;">Of</span> Cliente))</span><span style="font-size:11pt;font-family:Calibri;"> alimentada, podemos buscar os dados neste objeto de forma semelhante a uma consulta.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Podemos adicionar alguns itens:</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> lista <span style="color:blue;">As</span> <span style="color:blue;">New</span> List(<span style="color:blue;">Of</span> Cliente)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">    </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 1″</span>, .Idade = 10})</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 2″</span>, .Idade = 20})</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 3″</span>, .Idade = 30})</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 4″</span>, .Idade = 12})</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';">lista.Add(<span style="color:blue;">New</span> Cliente <span style="color:blue;">With</span> {.Nome = <span style="color:#a31515;">“Cliente 5″</span>, .Idade = 14})</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">A partir daí, podemos fazer uma query com filtros, comparações e o que mais for necessário:</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">Dim</span><span style="font-size:10pt;font-family:'Courier New';"> clientes = <span style="color:blue;">From</span> c <span style="color:blue;">In</span> lista _</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;line-height:115%;font-family:'Courier New';"><span>                       </span><span style="color:blue;">Where</span> c.Idade &#62; 12</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">Teremos então uma coleção de clientes com a idade maior que 12 anos, então basta navegar na coleção de clientes:</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;color:blue;font-family:'Courier New';">For</span><span style="font-size:10pt;font-family:'Courier New';"> <span style="color:blue;">Each</span> c <span style="color:blue;">As</span> Cliente <span style="color:blue;">In</span> clientes</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;font-family:'Courier New';"><span>  </span></span><span style="font-size:10pt;font-family:'Courier New';">Console.WriteLine(c)</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:blue;line-height:115%;font-family:'Courier New';">Next</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-size:11pt;"><span style="font-family:Calibri;">Conclusão</span></span></strong></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">São facilidades e recursos que aumentam principalmente a produtividade de desenvolvimento. O que foi apresentado aqui também é possível utilizarmos com o C#, com a sintaxe específica dele.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:11pt;font-family:Calibri;">As linguagens evoluem, e temos que acompanhar isso para utilizarmos ao máximo o poder do que utilizamos.</span></p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Programlama]]></title>
<link>http://illegalcrew.wordpress.com/2008/04/19/programlama/</link>
<pubDate>Sat, 19 Apr 2008 15:31:05 +0000</pubDate>
<dc:creator>illegalcrew</dc:creator>
<guid>http://illegalcrew.wordpress.com/2008/04/19/programlama/</guid>
<description><![CDATA[C ve C++ . Net Visual C# Visual C++ Visual Basic Visual J# JScript Perl Cobol Java Database Delphi P]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.illegalcrew.com/c-ve-c/">C ve C++</a></p>
<p><a title=" 'Dosya Tanımlayıcıları Ve İlgili Fonksiyonlar' Konusundaki birinci okunmamış Mesaja git" href="http://www.illegalcrew.com/c-ve-c/2406-dosya-tanimlayicilari-ve-ilgili-fonksiyonlar.html"></a><a href="http://www.illegalcrew.com/net/">. Net</a><br />
<a href="http://www.illegalcrew.com/visual-c/">Visual C#</a><br />
<a href="http://www.illegalcrew.com/visual-c/">Visual C++</a><br />
<a href="http://www.illegalcrew.com/visual-basic/">Visual Basic</a><br />
<a href="http://www.illegalcrew.com/visual-j/">Visual J#</a><br />
<a href="http://www.illegalcrew.com/jscript/">JScript</a><br />
<a href="http://www.illegalcrew.com/perl/">Perl</a><br />
<a href="http://www.illegalcrew.com/cobol/">Cobol</a></p>
<p><a href="http://www.illegalcrew.com/java/">Java</a></p>
<p><a href="http://www.illegalcrew.com/database/">Database</a></p>
<p><a href="http://www.illegalcrew.com/delphi/">Delphi</a></p>
<p><a href="http://www.illegalcrew.com/pascal/">Pascal</a></p>
<p><a href="http://www.illegalcrew.com/visual-basic-6-0-ve-oncesi/">Visual Basic 6.0 ve Öncesi</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Error with .NET Framework 3.5 installation]]></title>
<link>http://linuxdevil.wordpress.com/2008/02/25/error-with-net-framework-35-installation/</link>
<pubDate>Tue, 26 Feb 2008 03:53:15 +0000</pubDate>
<dc:creator>linuxdevil</dc:creator>
<guid>http://linuxdevil.wordpress.com/2008/02/25/error-with-net-framework-35-installation/</guid>
<description><![CDATA[I found this cool program called Skylight. It looks pretty wicked awesome. It said I had to install ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I found this cool program called <a href="http://www.candylabs.com/Skylight">Skylight</a>. It looks pretty wicked awesome. It said I had to install the .NET Framework 3.5 though. So I installed it, and I got errors. Finally, I looked at the &#8220;Microsoft Error Report&#8221; and it showed a System.TypeLoadException. Can anyone help? I really want to try out this program!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft .NET Framework 3.5]]></title>
<link>http://maaruthi.wordpress.com/2007/11/25/microsoft-net-framework-35/</link>
<pubDate>Sun, 25 Nov 2007 12:14:06 +0000</pubDate>
<dc:creator>Maaruthi</dc:creator>
<guid>http://maaruthi.wordpress.com/2007/11/25/microsoft-net-framework-35/</guid>
<description><![CDATA[.NET Framework 3.5 builds incrementally on the new features added in .NET Framework 3.0. For example]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://lunarsoft.net/images/frontpage/dotnet.png" alt="DotNet" align="right" height="68" width="66" />.NET Framework 3.5 builds incrementally on the new features added in .NET Framework 3.0. For example, feature sets in Windows Workflow Foundation (WF), Windows Communication Foundation (WCF), Windows Presentation Foundation (WPF) and Windows CardSpace. In addition, .NET Framework 3.5 contains a number of new features in several technology areas which have been added as new assemblies to avoid breaking changes. They include the following:</p>
<ul>
<li>Deep integration of Language Integrated Query (LINQ) and data awareness. This new feature will let you write code written in LINQ-enabled languages to filter, enumerate, and create projections of several types of SQL data, collections, XML, and DataSets by using the same syntax.</li>
<li>ASP.NET AJAX lets you create more efficient, more interactive, and highly-personalized Web experiences that work across all the most popular browsers.</li>
<li>New Web protocol support for building WCF services including AJAX, JSON, REST, POX, RSS, ATOM, and several new WS-* standards.</li>
<li>Full tooling support in Visual Studio 2008 for WF, WCF, and WPF, including the new workflow-enabled services technology.</li>
<li>New classes in .NET Framework 3.5 base class library (BCL) that address many common customer requests.</li>
</ul>
<p><font color="#ff0000"><strong>IMPORTANT:</strong></font> If you have installed earlier pre-release versions of .NET Framework 3.5, then you must uninstall them prior to running this installation by using Add or Remove Programs.</p>
<p><img src="http://lunarsoft.net/images/frontpage/download.png" alt="Download" border="0" height="20" width="20" /> Download: <a href="http://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe" target="_blank">Microsoft .NET Framework 3.5</a><br />
<img src="http://lunarsoft.net/images/frontpage/link.png" alt="Link" border="0" height="20" width="20" /> Link: <a href="http://msdn2.microsoft.com/en-us/netframework/default.aspx" target="_blank">Homepage</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ma che c'è di nuovo nel Framework 3.5 e in VS2008? ]]></title>
<link>http://pythonyan.wordpress.com/2007/11/22/ma-che-ce-di-nuovo-nel-framework-35-e-in-vs2008/</link>
<pubDate>Thu, 22 Nov 2007 10:54:45 +0000</pubDate>
<dc:creator>pythonyan</dc:creator>
<guid>http://pythonyan.wordpress.com/2007/11/22/ma-che-ce-di-nuovo-nel-framework-35-e-in-vs2008/</guid>
<description><![CDATA[Dal blog di Raffaele una indispensabile lista che ci indica le differenze tra la versione 2005 e 200]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dal blog di Raffaele una indispensabile <a href="http://blogs.ugidotnet.org/raffaele/archive/2007/11/22/89866.aspx">lista </a>che ci indica le differenze tra la versione 2005 e 2008 di VS e relativi framework.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft entrega Visual Studio 2008 y .NET Framework 3.5 a los desarrolladores (Comunicado de Prensa Digital)]]></title>
<link>http://jaimelopezvivas.wordpress.com/2007/11/21/microsoft-entrega-visual-studio-2008-y-net-framework-35-a-los-desarrolladores-comunicado-de-prensa-digital/</link>
<pubDate>Wed, 21 Nov 2007 12:16:54 +0000</pubDate>
<dc:creator>Jaime Adalberto</dc:creator>
<guid>http://jaimelopezvivas.wordpress.com/2007/11/21/microsoft-entrega-visual-studio-2008-y-net-framework-35-a-los-desarrolladores-comunicado-de-prensa-digital/</guid>
<description><![CDATA[Comunicado de Prensa Digital   REDMOND, Wash. – 19 de noviembre de 2007 – ¡La espera llegó a su fin!]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://jaimelopezvivas.wordpress.com/files/2007/11/vs2008.png" title="Visual Studio 2008"><img src="http://jaimelopezvivas.wordpress.com/files/2007/11/vs2008.png" alt="Visual Studio 2008" /></a></p>
<table border="0" cellPadding="0" cellSpacing="0" style="border-collapse:collapse;" class="MsoNormalTable">
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';"></p>
<p align="right" style="text-align:right;margin:0 3.6pt 0 0;" class="MsoNormal"><strong><span style="font-family:'Arial','sans-serif';"></span></strong></p>
<p align="right" style="text-align:right;margin:0 3.6pt 0 0;" class="MsoNormal"><strong><span style="font-family:'Arial','sans-serif';"><font size="3">Comunicado de Prensa Digital </font></span></strong> </p>
<p></span></strong></p>
<p style="margin:0;" class="MsoNormal"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';"></span></strong></p>
<p><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">REDMOND, Wash. – 19 de noviembre de 2007 –</span></strong><span style="font-size:10pt;font-family:'Arial','sans-serif';"> ¡La espera llegó a su fin! Microsoft anunció el día de hoy que Visual Studio 2008 y<span>  </span>.NET Framework 3.5 se han liberado para fabricación (RTM). Con más de 250 características nuevas, </span><span style="font-size:10pt;font-family:'Arial','sans-serif';">Visual Studio 2008 </span><span style="font-size:10pt;font-family:'Arial','sans-serif';">incluye mejoras importantes en cada edición, incluyendo</span><span style="font-size:10pt;font-family:'Arial','sans-serif';"> Visual Studio Express y Visual Studio Team System. Los desarrolladores de todos los niveles —desde aficionados hasta equipos de desarrollo empresarial— ahora cuentan con una solución consistente, segura y confiable que les permite desarrollar aplicaciones para las últimas plataformas: W</span><span style="font-size:10pt;color:black;font-family:'Arial','sans-serif';">eb, Windows Vista, Windows Server 2008, el sistema Office 2007 y otros. </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;color:black;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';">Visual Studio 2008 y .NET Framework 3.5 fueron aclamados en los recientes eventos </span><span><a href="http://www.microsoft.com/emea/presscentre/teched07/default.mspx"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">TechEd Developers</span></a></span><span style="font-size:10pt;font-family:'Arial','sans-serif';"> and </span><span><a href="http://www.devconnections.com/"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">DevConnections</span></a></span><span style="font-size:10pt;"><font face="Calibri">, </font></span><span style="font-size:10pt;font-family:'Arial','sans-serif';">donde</span><span style="font-size:10pt;"><font face="Calibri"> </font></span><span style="font-size:10pt;font-family:'Arial','sans-serif';">se encontraron con el gran entusiasmo de la comunidad de desarrolladores. ¿Qué fue lo que atrajo su atención? Continúe leyendo para conocer todas las características y capacidades nuevas de Visual Studio 2008 y .NET Framework 3.5 que los desarrolladores ya pueden comenzar a aprovechar, así como para obtener enlaces a recursos adicionales.</span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:8pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:8pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:11pt;color:#4f81bd;font-family:'Arial','sans-serif';">Links interesantes:</span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">Hojas de datos:</span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://download.microsoft.com/download/3/B/D/3BDDC5D5-E8CF-4031-A12A-B072ECA27C42/VS2008ProductGuideEMEA.doc"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">Guía de Producto de Visual Studio 2008</span></a></span><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://www.microsoft.com/emea/presscentre/teched07/pressmaterials.mspx"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">10 Razones para Migrar a Visual Studio 2008</span></a></span><u><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"> </span></u></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://www.microsoft.com/emea/presscentre/teched07/pressmaterials.mspx"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">.NET Framework 3.5</span></a></span><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">Entrevista a “Soma”:</span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://www.microsoft.com/presspass/features/2007/nov07/11-19developerqa.mspx"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">Entrevista a S. “Soma” Somasegar</span></a></span><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">Video – Canal 9: </span></strong><span class="MsoHyperlink"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"><u>Conversación con Soma: Visual Studio 2008 y el futuro</u></span></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;">
<p align="center" style="text-align:center;margin:0;" class="MsoNormal"><span></span></p>
</td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://channel9.msdn.com/"></a></span><em><span style="font-size:8pt;color:#0070c0;font-family:'Arial','sans-serif';"><span> </span></span></em><strong><span style="font-size:8pt;font-family:'Arial','sans-serif';"></span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:9pt;font-family:'Arial','sans-serif';"> </span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">Microsoft Blogs:</span></strong></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://blogs.msdn.com/somasegar/"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">S. “Soma” Somasegar</span></a></span><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://blogs.msdn.com/stevengu/default.aspx"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">Steve Guggenheimer</span></a></span><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://weblogs.asp.net/scottgu/default.aspx"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">Scott Guthrie</span></a></span><span style="font-size:10pt;font-family:'Arial','sans-serif';"></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span><a href="http://blogs.msdn.com/dotnetinterop/"><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';">Dino Chiesa</span></a></span><span style="font-size:10pt;color:#0070c0;font-family:'Arial','sans-serif';"></span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';">El .NET Framework 3.5 también brinda varias características nuevas, incluyendo poderosas capacidades para Web 2.0, Arquitectura Orientada a Servicios (SOA) y aplicaciones basadas en Software + Servicios:</span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:Symbol;"><span><span style="font:7pt 'Times New Roman';">           </span></span></span><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">Servicios con flujo de trabajo </span></strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">que<strong> </strong>ofrecen<strong> </strong>nuevas clases de modelo de programación que simplifican el desarrollo de los servicios habilitados con flujo de trabajo por medio de Windows Communication Foundation y Windows Workflow Foundation. Eso permite a los desarrolladores de .NET Framework crear lógica empresarial para un servicio a través de WF y exponer los mensajes de ese servicio mediante WCF. </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:Symbol;"><span><span style="font:7pt 'Times New Roman';">           </span></span></span><strong><span style="font-size:10pt;font-family:'Arial','sans-serif';">Soporte adicional para protocolos de servicios Web</span></strong><span style="font-size:10pt;font-family:'Arial','sans-serif';"> en Windows Communication Foundation, incluyendo Web Services Atomic Transaction (WS-AtomicTransaction) 1.1, WS-ReliableMessaging 1.1, WS-SecureConversation, y Web Services Coordination (WS-Coordination) 1.1.</span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';">Melinda Ballou, analista de la industria en IDC y directora del Programa de Administración de Ciclo de Vida de las Aplicaciones y Servicios de Administración de TI, habla sobre la importancia de la administración del ciclo de vida de las aplicaciones (ALM) para los clientes: “Las empresas globales exigen un desarrollo de software que abarque los nuevos ambientes Web 2.0, así como servicios web, flujo de trabajo, consulta de información y otras áreas para el desarrollo y la implementación distribuidos. El desarrollo mejorado e integrado y las herramientas ALM que brindan soporte en todas esas áreas, con calidad, administración de cambios y diseño, además de procesos eficaces y estrategias organizativas, son cada vez más críticos para el éxito de la TI y los negocios”.</span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';"> </span></td>
</tr>
<tr>
<td width="638" vAlign="top" style="width:478.8pt;background-color:transparent;border:#f0f0f0;padding:0 5.4pt;"><span style="font-size:10pt;font-family:'Arial','sans-serif';">Visual Studio 2008 y .NET Framework 3.5 son componentes centrales de la plataforma de aplicaciones Microsoft, un conjunto de capacidades integradas, herramientas e infraestructura que permite a las empresas crear aplicaciones más dinámicas y conectadas para poder brindar mayor valor de negocios. Estos lanzamientos también representan un paso importante en el camino hacia el lanzamiento mundial de Windows Server 2008, Visual Studio 2008 y SQL Server 2008 el 27 de febrero de 2008.</span></td>
</tr>
</table>
</div>]]></content:encoded>
</item>

</channel>
</rss>
