Anúncio
Anúncio

Mais conteúdo relacionado

Anúncio
Anúncio

Visual Studio 2008 Overview

  1. Bureau d’étude et d’aide à l’acquisition des technologies
  2. Microsoft RegionalDirector / MVP
  3. Auteur (2006 – 2007)
  4. Livres : .NET 2.0 – VB 2005 – VS2005
  5. Articles Techniques presse francophone
  6. Communautaire
  7. Blog : http://blogs.developpeur.org/redo
  8. Sites : Codes-Sources, ASP-PHP.NET, TechHeadBrothers, MSDN, …
  9. Speaker Microsoft .NET > 5 ans
  10. Events MSDN Belgique – Luxembourg
  11. Events MSDN France
  12. TechDays France
  13. Wygday
  14. Nouveautés des langages
  15. C# v3.0
  16. VB v9.0
  17. LINQ
  18. C# v3.0
  19. Rappel C# v2.0 – VB v8.0
  20. C# v3.0
  21. Accroîtrevotreproductivité
  22. Développement .NET 3.5 - Vista
  23. VB 9.0
  24. LINQ

Notas do Editor

  1. • VB9• C#3• IDE enhancements for .NET Fx 3.0• .NET Fx 3.5• Impact of Windows Server 2008 for developers
  2. The main points are that the CLR engine is the same version (so no need to retest your apps) and that the headline feature is the language enhancements (C#3 & VB9 compilers) and LINQ.
  3. The main points are that the CLR engine is the same version (so no need to retest your apps) and that the headline feature is the language enhancements (C#3 & VB9 compilers) and LINQ.
  4. C# - started as “the (first) language for CLR”; emphasize the pragmatic approach (cf. Anders Hejlsberg) = be explicit about language features like properties, events, etc.  developer confidence2.0 = generics wave (impact on CLR) + additional useful things (that do require generics on their own + that are useful on their own)3.0 = LINQ + making the language more concise, more productive, more powerful, ...
  5. LINQ: tell the story of Reflex 2.0, Dbase III+, ... where data and code were close together  structured + distributed programming changed this = layered approach  result: data and code on two islands with a huge gap between the two  need for O/R mapping tools etcWith LINQ: data becomes a first-class citizen of the languageReduce “language noise” (e.g. tiresome repetitive code etc)API independent  you can reimplement stuff on your own, the language doesn’t care about it (e.g. extension methods on Ienumerable<T>, don’t mention the word yet)Backward compat: refer to MSR paper on formal proof of the possibility for translation of every C# 3.0 program to an equivalent C# 2.0 program (semantically)
  6. Build up the slide and introduce “syntactical sugar”. Story telling approach referring back to the gap between data and code and the LINQ solution using Language Integrated queries  requires glue: functional style programming concepts, introduction of concepts from the relational world (e.g. projection clauses require anonymous types) and language simplification (e.g. object initializers).Use the words:-Different compilation stages (front-end query syntax is translated into “pure” C# into ..., e.g. resolution of query expressions to chains of method calls)-Method call chain (can still be instance methods or extension methods)
  7. VB = longer history (up to 9.0)Refer to huge transition from 6.0 to .NET which implied the creation of a runtime library for bw compat: play the rules of the CLS (OO for example) and remain consistent with VB pre-.NETVB 8.0 = GenericsVB 9.0 = LINQ + XML (difference with C#)
  8. Similar story as in C# 3.0 except for XML integration; emphasize that language evolutuon doesn’t mean that languages have to go hand in hand on any field.
  9. Similar story as with C# 3.0 but abbrev’d.
  10. http://msdn2.microsoft.com/fr-fr/library/7cz8t42e(VS.80).aspx
  11. Réf : http://www.dotnetguru.org/articles/dossiers/generics/CS2_Generics_FR2.htm
  12. Réf : http://www.dotnetguru.org/articles/dossiers/anonymescsharp2/CS2_AnonymousMethod_FR.htmThe delegate keyword is used to declare a reference type that can be used to encapsulate a named or an anonymous method. Delegates are similar to function pointers in C++; however, delegates are type-safe and secure. For applications of delegates, see Delegates and Generic Delegates.
  13. http://msdn2.microsoft.com/en-us/library/sx2bwtw7(VS.80).aspx
  14. Traitement continuPossibilité de gérer des listes infinies comme dans les langages fonctionnels
  15. http://msdn2.microsoft.com/fr-fr/library/79b3xss3(VS.80).aspx
  16. http://msdn2.microsoft.com/en-us/library/bb383815(VS.90).aspx
  17. When used with local variables, the var keyword instructs the compiler to infer the type of the variable or the array elements from the expression on the right side of the initialization statement.Indispensable pour les types anonymeshttp://msdn2.microsoft.com/fr-fr/library/bb384061(VS.90).aspx
  18. http://msdn2.microsoft.com/fr-fr/library/bb384062(VS.90).aspx
  19. Collection initializers provide a way to specify one or more object intializers when initializing any collection class that implements IEnumerable. By using a collection initializer you do not have to specify multiple calls to the Add method of the class in your source code; the compiler adds the calls2ème exemple :The following collection initializer uses object initializers to initialize objects of the Test class defined in an earlier example. Note that the individual object initializers are enclosed in braces and separated by commas.
Anúncio