O slideshow foi denunciado.
Seu SlideShare está sendo baixado. ×

Dotnetintroduce 100324201546-phpapp02

Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Próximos SlideShares
Gc algorithm inside_dot_net
Gc algorithm inside_dot_net
Carregando em…3
×

Confira estes a seguir

1 de 60 Anúncio

Mais Conteúdo rRelacionado

Semelhante a Dotnetintroduce 100324201546-phpapp02 (20)

Anúncio

Mais recentes (20)

Anúncio

Dotnetintroduce 100324201546-phpapp02

  1. 1. Winson Sun
  2. 2. Survey <ul><li>听说过 DotNet, C# ( 1 ) </li></ul><ul><li>知道什么是 C#, DotNet Framework ( 2 ) </li></ul><ul><li>知道如何命令行编译 C# ( 1 ) </li></ul><ul><li>编写过 C# 程序 ( 2 ) </li></ul><ul><li>知道什么是 CLR ( 2 ) </li></ul><ul><li>知道什么是 Rails , ASP.NET MVC ( 2 ) </li></ul><ul><li>知道什么是 Ruby, Python (1) </li></ul><ul><li>知道什么是 GC , LINQ ( 2 ) </li></ul><ul><li>Write WCF service/client example </li></ul><ul><li>Write SilverLight/WPF example with plain mode, with MVVM pattern </li></ul><ul><li>Investigate the source code of Dotnet (with VS debug or ILSpy) </li></ul><ul><li>Familiar with useful tools for DotNet development </li></ul><ul><li>Familiar with all DotNet keyword/concept (new features) and could use main parts </li></ul><ul><li>知道什么是 Functional Programming , Lambda ( 3 ) </li></ul><ul><li>知道什么是 UI Automation MSTest MSBuild ( 2 ) </li></ul><ul><li>知道什么是 Dynamic language in DotNet ( 2 ) </li></ul>
  3. 3. Survey <ul><li>Do you love programming? Do you plan your job routine? </li></ul><ul><li>How to become a kaopu developer </li></ul><ul><li>How to improve yourself continuously </li></ul><ul><li>Familiar with useful Design pattern </li></ul><ul><li>Be able to analyse the business requirement, and convert them to software design </li></ul><ul><li>Could (use tools) find root cause quickly and correctly, could fix issue without adding new bugs </li></ul>
  4. 4. Quiz <ul><li>Is DotNet framework a real framework? </li></ul><ul><li>“ Conversion over Configuration”? </li></ul>
  5. 5. What’s Framework? http://en.wikipedia.org/wiki/Software_framework Framework is an abstraction in which common code providing generic functionality can be selectively overridden or specialized by user code providing specific functionality. Frameworks are a special case of software libraries in that they are reusable abstractions of code wrapped in a well-defined API , yet they contain some key distinguishing features that separate them from normal libraries. Frameworks have these distinguishing features that separate them from libraries or normal user applications: 1. inversion of control - In a framework, unlike in libraries or normal user applications, the overall program's flow of control is not dictated by the caller, but by the framework. 2. default behavior - A framework has a default behavior. This default behavior must actually be some useful behavior and not a series of no-ops. 3. extensibility - A framework can be extended by the user usually by selective overriding or specialized by user code providing specific functionality 4. non-modifiable framework code - The framework code, in general, is not allowed to be modified. Users can extend the framework, but not modify its code.
  6. 6. http://msdn.microsoft.com/zh-cn/netframework/default.aspx DotNet FAQ <ul><li>http://msdn.microsoft.com/en-us/library/ms973850.aspx </li></ul>
  7. 7. <ul><li>COM VisualStudio.Net Ado.Net Windows.Net ASP.NET, 微软你该找个起名大师了! </li></ul><ul><li>Information , Service, Communication, Connection, too many BIG concepts ! </li></ul><ul><li>新瓶装旧酒。 MVC 哪一年提出的概念? Garbage Collection 哪一年? FP 哪一年?(参考 Wiki ) </li></ul><ul><li>从务虚到务实 </li></ul>
  8. 9. http://java.sun.com/javase/6/docs/
  9. 14. Quiz <ul><li>What is DotNet Framework? </li></ul><ul><li>Why Microsoft design the DotNet? </li></ul><ul><li>Why Microsoft didn’t use DotNet in OS? </li></ul><ul><li>Why design C#? </li></ul><ul><li>Why not C++? </li></ul>
  10. 16. http://channel9.msdn.com/tags/
  11. 17. Quiz <ul><li>Why we need to learn and use DotNet? </li></ul>
  12. 18. <ul><li>The common language runtime (CLR) is the execution engine for .NET Framework applications. </li></ul><ul><li>It provides a number of services, including the following: </li></ul><ul><ul><li>Code management (loading and execution) </li></ul></ul><ul><ul><li>Application memory isolation </li></ul></ul><ul><ul><li>Verification of type safety </li></ul></ul><ul><ul><li>Conversion of IL to native code </li></ul></ul><ul><ul><li>Access to metadata (enhanced type information) </li></ul></ul><ul><ul><li>Managing memory for managed objects </li></ul></ul><ul><ul><li>Enforcement of code access security </li></ul></ul><ul><ul><li>Exception handling, including cross-language exceptions </li></ul></ul><ul><ul><li>Interoperation between managed code, COM objects, and pre-existing DLLs (unmanaged code and data) </li></ul></ul><ul><ul><li>Automation of object layout </li></ul></ul><ul><ul><li>Support for developer services (profiling, debugging, and so on) </li></ul></ul>
  13. 19. MSDN .NET Framework http://msdn.microsoft.com/en-us/library/system.io%28VS.100%29.aspx http://en.wikipedia.org/wiki/.NET_Framework http://zh.wikipedia.org/wiki/.NET%E6%A1%86%E6%9E%B6 http://msdn.microsoft.com/zh-cn/library/w0x726c2%28v=vs.90%29.aspx
  14. 20. .NET Framework Class Library <ul><li>The .NET Framework class library is a library of classes, interfaces, and value types that provides access to system functionality and is designed to be the foundation on which .NET Framework applications, components, and controls are built. </li></ul>
  15. 21. The Base Class Library (BCL) includes a small subset of the entire class library and is the core set of classes that serve as the basic API of the Common Language Runtime . [9] The classes in mscorlib.dll and some of the classes in System.dll and System.core.dll are considered to be a part of the BCL. The BCL classes are available in both .NET Framework as well as its alternative implementations including .NET Compact Framework , Microsoft Silverlight and Mono . The Framework Class Library (FCL) is a superset of the BCL classes and refers to the entire class library that ships with .NET Framework. It includes an expanded set of libraries, including WinForms , ADO.NET , ASP.NET , Language Integrated Query , WPF , WCF among others. The FCL is much larger in scope than standard libraries for languages like C++ , and comparable in scope to the standard libraries of Java .
  16. 22. <ul><li>using System; </li></ul><ul><li>using System.IO; </li></ul><ul><li>namespace ConsoleApplication1 </li></ul><ul><li>{ </li></ul><ul><li>class Program </li></ul><ul><li>{ </li></ul><ul><li>public static long DirSize(DirectoryInfo d) </li></ul><ul><li>{ </li></ul><ul><li>long Size = 0; </li></ul><ul><li> FileInfo[] fis = d.GetFiles(); </li></ul><ul><li>foreach (FileInfo fi in fis) </li></ul><ul><li>{ </li></ul><ul><li>Size += fi.Length; </li></ul><ul><li>} </li></ul><ul><li>DirectoryInfo[] dis = d.GetDirectories(); </li></ul><ul><li>foreach (DirectoryInfo di in dis) </li></ul><ul><li>{ </li></ul><ul><li>Size += DirSize(di); </li></ul><ul><li>} </li></ul><ul><li>return (Size); </li></ul><ul><li>} </li></ul><ul><li>static void Main(string[] args) </li></ul><ul><li>{ </li></ul><ul><li>System.String dirName = &quot;c:temp&quot;; </li></ul><ul><li>DirectoryInfo d = new DirectoryInfo(dirName); </li></ul><ul><li>Console.WriteLine(&quot;The size of {0} and its subdirectories is {1} bytes.&quot;, d, DirSize(d)); </li></ul><ul><li>} </li></ul><ul><li>} </li></ul><ul><li>} </li></ul>
  17. 23. <ul><li>import java.io.*; </li></ul><ul><li>import java.util.*; </li></ul><ul><li>public class DirUtils { </li></ul><ul><li>public static List recurseDir(String dir) { </li></ul><ul><li>String result, _result[]; </li></ul><ul><li>result = RecurseDirFrom(dir); </li></ul><ul><li>_result = result.split(&quot;|&quot;); </li></ul><ul><li>return Arrays.asList(_result); </li></ul><ul><li>} </li></ul><ul><li>private static String RecurseDirFrom(String dirItem) { </li></ul><ul><li>File file; </li></ul><ul><li>String list[], result; </li></ul><ul><li>result = dirItem; </li></ul><ul><li>file = new File(dirItem); </li></ul><ul><li>if ( file.isDirectory( )) { </li></ul><ul><li>list = file.list(); </li></ul><ul><li>for (int i = 0; i < list.length; i++) </li></ul><ul><li>result = result + &quot;|&quot; + RecurseDirFrom(dirItem + File.separatorChar + list[i]); </li></ul><ul><li>} </li></ul><ul><li>return result; </li></ul><ul><li>} </li></ul><ul><li>public static void main(String arg[]) { </li></ul><ul><li>if (arg.length > 0) { </li></ul><ul><li>System.out.println(&quot;recursive Dirs from &quot; + arg[0]); </li></ul><ul><li>System.out.println( DirUtils.recurseDir(arg[0]) ); </li></ul><ul><li>} </li></ul><ul><li>} </li></ul><ul><li>} </li></ul>
  18. 24. Best practice <ul><li>处理异常的最佳做法 </li></ul><ul><li>开发全球通用应用程序的最佳做法 </li></ul><ul><li>System.Net 类的最佳做法 </li></ul><ul><li>托管线程处理的最佳做法 </li></ul>http://msdn.microsoft.com/zh-cn/library/ms184411%28v=vs.90%29.aspx
  19. 25. http://1code.codeplex.com/ Are you frustrated by the lack of code samples for a certain programming task? Have you ever struggled to quickly get started with a technique? Have you expected someone to write code samples for you based on your requests for free? Is a one-stop code sample library for all Microsoft development technologies attractive to you? Another material: Google search “ C# cookbook ”
  20. 26. C# Programming Tools <ul><li>http://msdn.microsoft.com/zh-cn/vcsharp/default.aspx CSharp Development Center </li></ul><ul><li>http://msdn.microsoft.com/en-us/magazine/cc300497.aspx Ten Must-Have Tools Every Developer Should Download </li></ul><ul><li>http://www.codeplex.com </li></ul><ul><li>http://www.codeproject.com </li></ul>
  21. 28. http://www.microsoft.com/china/msdn/events/webcasts/shared/Webcast/MSDNWebCast.aspx
  22. 30. http://channel9.msdn.com/tags/CSharp/
  23. 31. http://msdn.microsoft.com/zh-cn/practices/default.aspx
  24. 32. http://code.msdn.microsoft.com/Project/ProjectDirectory.aspx?TagName=C%23
  25. 33. DotNet internal <ul><li>http://mono-project.com/ </li></ul><ul><li>http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx </li></ul><ul><li>http://netmassdownloader.codeplex.com </li></ul><ul><li>Shared Source Common Language Infrastructure 2.0 Release </li></ul>
  26. 34. <ul><li>DotNet Platform vs Java Platform </li></ul><ul><li>WCF(Odata) vs XMLRPC </li></ul><ul><li>WPF vs RIA (Flash, Flex, Html5, JavaFx) </li></ul><ul><li>C# language vs Java language </li></ul><ul><li>Azure Cloud vs Amazon S3 </li></ul><ul><li>Team system vs 持续集成 (CI) </li></ul><ul><li>Win7 vs MacOSX </li></ul>
  27. 36. Why we say “platform”? <ul><li>Dynamic language </li></ul><ul><ul><li>IronPython, IronRuby, Lua </li></ul></ul><ul><li>Functional Programming </li></ul><ul><ul><li>Fsharp </li></ul></ul><ul><li>You need to know more </li></ul><ul><ul><li>JavaScript ( www.jquery.com ) for asp.net </li></ul></ul><ul><ul><li>Web development, html, css </li></ul></ul><ul><ul><li>Front dev, server-side dev, do we need desktop? </li></ul></ul>
  28. 37. http://www.silverlight.net/learn/dynamic-languages/
  29. 38. IronPython Demo <ul><li>Used in: Desktop application, small utility. </li></ul><ul><li>http://www.ironpython.info/index.php/Contents#Windows_Forms </li></ul>
  30. 39. <ul><li># http://www.ironpython.info/index.php/Interacting_with_Excel </li></ul><ul><li># ref: Excel 2003 VBA Language Reference </li></ul><ul><li>import clr </li></ul><ul><li>from System import Array </li></ul><ul><li>from System import DateTime </li></ul><ul><li>clr.AddReference(&quot;Microsoft.Office.Interop.Excel&quot;) </li></ul><ul><li>import Microsoft.Office.Interop.Excel as Excel </li></ul><ul><li>excel = Excel.ApplicationClass() </li></ul><ul><li>excel.Visible = True </li></ul><ul><li>workbook = excel.Workbooks.Add() </li></ul><ul><li>worksheet = workbook.Worksheets.Add() </li></ul><ul><li>worksheet.Name = &quot;aaaaa&quot; </li></ul><ul><li>cell1 = worksheet.Range[&quot;A2&quot;] </li></ul><ul><li>cell1.Value2 = 42 </li></ul><ul><li>xlrange = worksheet.Range[&quot;A3&quot;, &quot;b4“] </li></ul><ul><li>arr1 = Array.CreateInstance(object, 2, 2) </li></ul><ul><li>arr1[0, 0] = DateTime.Now </li></ul><ul><li>arr1[0, 1] = 3 </li></ul><ul><li>arr1[1, 0] = &quot;hi Excel test.&quot; </li></ul><ul><li>arr1[1, 1] = &quot;hi there!&quot; </li></ul><ul><li>xlrange.Value2 = arr1 </li></ul>
  31. 40. IronRuby Demo <ul><li>Used in: Quick dirty website. </li></ul><ul><li>Sinatra, Rails </li></ul><ul><li>ir, igem, </li></ul>
  32. 41. <ul><li>require 'rubygems' </li></ul><ul><li>require 'sinatra' </li></ul><ul><li>get '/hi' do </li></ul><ul><li>&quot;Hello World!“ </li></ul><ul><li>end </li></ul><ul><li>get '/hi/:name' do </li></ul><ul><li># matches &quot;GET /hello/foo&quot; and &quot;GET /hello/bar&quot; </li></ul><ul><li># params[:name] is 'foo' or 'bar‘ </li></ul><ul><li>&quot;Hello #{params[:name]}! you come from /hi&quot; </li></ul><ul><li>end </li></ul>
  33. 42. Quiz <ul><li>Why we should learn and use dynamic language? </li></ul><ul><li>Which area is suitable for Ruby/Python? </li></ul>
  34. 43. Survey <ul><li>First gets 3, second gets 1, third gets 0, how about your rate? </li></ul><ul><li>Web develop, DotNet(C#) vs Ruby/Python vs Java </li></ul><ul><li>Desktop develop, DotNet(C#) vs Ruby/Python vs Java </li></ul><ul><li>Cross OperationSystem, DotNet(C#) vs Ruby/Python vs Java </li></ul><ul><li>Embedded (Phone), DotNet(C#) vs Ruby/Python vs Java </li></ul><ul><li>Game (Server) develop, DotNet(C#) vs Ruby/Python vs Java </li></ul>
  35. 44. A New World – F# <ul><li>Csharp: </li></ul><ul><li>int[] numbers = new int[7] { 0, 1, 2, 3, 4, 5, 6 }; </li></ul><ul><li>var numQuery = from num in numbers </li></ul><ul><li>where (num % 2) == 0 </li></ul><ul><li>select num; </li></ul><ul><li>foreach (int num in numQuery) </li></ul><ul><li>{ </li></ul><ul><li>Console.Write(&quot;{0,1} &quot;, num); </li></ul><ul><li>} </li></ul><ul><li>Fsharp: </li></ul><ul><li>let listN = List.filter (fun n -> (n % 2) = 0) [0..6];; </li></ul><ul><li>printfn &quot;listN = %A&quot; listN </li></ul>http://msdn.microsoft.com/en-us/fsharp/default.aspx
  36. 45. <ul><li>let rec qsort L = </li></ul><ul><li>match L with </li></ul><ul><li>| [] -> [] </li></ul><ul><li>| x::xs -> </li></ul><ul><li>let smaller = [for i in xs when i <= x -> i] in </li></ul><ul><li>let larger = [for i in xs when i > x -> i] in </li></ul><ul><li>qsort smaller @ [x] @ qsort larger;; </li></ul><ul><li>qsort [3;5;1;4;2];; </li></ul><ul><li>qsort [7;5;10;2;3;67;1;3];; </li></ul><ul><li>qsort [&quot;Hello&quot;; &quot;AA&quot;; &quot;hello&quot;; &quot;help&quot;; &quot;Aa&quot;; &quot;aa&quot;;];; </li></ul>http://www.gofsharp.com/FS/Translations/Hutton/Hutton.txt
  37. 46. Fsharp Demo <ul><li>http://research.microsoft.com/en-us/people/dsyme/ </li></ul><ul><li>http://www.cnblogs.com/JeffreyZhao/tag/F%23/ </li></ul><ul><li>*** Fsharp could do all work that Csharp could *** </li></ul>
  38. 47. Quiz <ul><li>Why we should learn/use Functional language? </li></ul><ul><li>Which area is suitable for Fsharp? </li></ul><ul><li>Concurrency? </li></ul><ul><li>Parallelism? </li></ul>
  39. 48. <ul><li>Concurrency (Erlang) and parallelism (Fsharp) are NOT the same thing. Two tasks T1 and T2 are concurrent if the order in which the two tasks are executed in time is not predetermined, </li></ul><ul><ul><li>T1 may be executed and finished before T2, </li></ul></ul><ul><ul><li>T2 may be executed and finished before T1, </li></ul></ul><ul><ul><li>T1 and T2 may be executed simultaneously at the same instance of time (parallelism), </li></ul></ul><ul><ul><li>T1 and T2 may be executed alternatively, </li></ul></ul><ul><li>If two concurrent threads are scheduled by the OS to run on one single-core non-SMT non-CMP processor, you may get concurrency but not parallelism. Parallelism is possible on multi-core, multi-processor or distributed systems. </li></ul><ul><li>Concurrency is often referred to as a property of a program, and is a concept more general than parallelism . </li></ul>
  40. 49. <ul><li>SliverLight more important </li></ul><ul><li>UIAutomation Test </li></ul><ul><li>Odata </li></ul><ul><li>Azure platform </li></ul><ul><li>ASP.net MVC </li></ul><ul><li>MVVM </li></ul>
  41. 51. Advance topic : Garbage Collection <ul><li>Garbage Collection useful documents </li></ul><ul><ul><li>http://www.ibm.com/developerworks/cn/java/j-jtp10283/ </li></ul></ul><ul><ul><li>http://www.ibm.com/developerworks/cn/java/l-JavaMemoryLeak2/index.html </li></ul></ul><ul><ul><li>http://blogs.msdn.com/maoni/archive/2004/06/15/156626.aspx </li></ul></ul><ul><ul><li>http://msdn.microsoft.com/zh-cn/library/0xy59wtx.aspx </li></ul></ul><ul><ul><li>http://blogs.msdn.com/maoni/archive/2004/06/15/156626.aspx </li></ul></ul><ul><ul><li>http://blogs.msdn.com/maoni/archive/2004/09/25/234273.aspx </li></ul></ul><ul><ul><li>http://blogs.msdn.com/maoni/archive/2004/12/19/327149.aspx </li></ul></ul><ul><ul><li>http://blogs.msdn.com/maoni/archive/2005/05/06/415296.aspx </li></ul></ul><ul><ul><li>http://www.codeproject.com/KB/dotnet/garbagecollection.aspx </li></ul></ul><ul><ul><li>http://blogs.msdn.com/tess/archive/2006/09/06/net-memory-usage-a-restaurant-analogy.aspx </li></ul></ul><ul><ul><li>http://msdn.microsoft.com/en-us/library/ms973837.aspx </li></ul></ul><ul><ul><li>http://msdn.microsoft.com/en-us/library/f144e03t.aspx </li></ul></ul>
  42. 52. Quiz <ul><li>How to design a garbage collection library? </li></ul>
  43. 53. In DotNet, managed heap concept. http://www.codeguru.com/columns/dotnet/article.php/c6593
  44. 54. GC 常用技术 <ul><li>引用计数 </li></ul><ul><ul><li>COM , smart pointer </li></ul></ul><ul><li>Tracing </li></ul><ul><ul><li>Mark-Compact 此算法結合了“標記 - 清除”和“複製”兩個演算法的優點。也是分兩階段,第一 階段從根節點開始標記所有被引用物件,第二階段遍歷整個 heap ,把清除未標記物件並且把存活物件“壓縮”到 heap 的其中一塊,按順序排放。此演算法避免了“標記 - 清除”的碎片問題,同時也避免了“複製”算法的空間問題。 </li></ul></ul>http://pt.withy.org/publications/AMM.pdf http://www.cs.nctu.edu.tw/~kjji/GC.pptx http://moon.nju.edu.cn/twiki/pub/ICSatNJU/CourseOOT/04_Memory_Management.ppt http://www.cs.wustl.edu/~mdeters/doc/slides/rtgc-history.pdf http://lua-users.org/wiki/GarbageCollectionTutorial http://blog.csdn.net/akara/archive/2010/03/23/5408678.aspx http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29
  45. 55. http://chaoticjava.com/posts/how-does-garbage-collection-work/
  46. 56. Advance topic <ul><li>Add-ins and Extensibility Describes how to develop add-in applications that extend a host application's functionality. </li></ul><ul><li>Asynchronous Programming Design Patterns Describes two design patterns available in the .NET Framework that are used to run threads separately from the main application thread. </li></ul><ul><li>Component Authoring for the Design Environment Provides links to information about creating your own components in the .NET Framework, customizing their behavior and display, and creating custom controls for the Windows Presentation Foundation (WPF). </li></ul><ul><li>Dynamic Source Code Generation and Compilation Discusses the Code Document Object Model (CodeDOM), which enables the output of source code in multiple programming languages. </li></ul><ul><li>Emitting Dynamic Methods and Assemblies Describes a set of managed types in the System.Reflection.Emit namespace that enable a compiler or tool to emit metadata and Microsoft intermediate language (MSIL) at run time and optionally generate a portable executable (PE) file on disk. </li></ul><ul><li>Expression Trees Introduces expression trees, which are tree-shaped data structures that can be used to represent language-level code in the form of data. </li></ul><ul><li>Garbage Collection Discusses how the garbage collector manages memory and how you can program to use memory more efficiently. </li></ul><ul><li>Hosting the Common Language Runtime Explains the concept of a runtime host, which loads the runtime into a process, creates the application domain in the process, and loads and executes user code. </li></ul><ul><li>Interoperability Describes services provided by the .NET Framework for interaction with COM components, COM+ services, external type libraries, and many operating system services. </li></ul><ul><li>.NET Remoting Discusses establishing communication between objects that run in different processes. </li></ul><ul><li>Network Programming Shows how to use Internet access classes to implement both Web- and Internet-based applications. </li></ul><ul><li>Reflection Explains how to obtain access to type information at run time by using reflection. </li></ul><ul><li>Reliability Discusses writing reliable code for any host that is executing in a .NET Framework environment. </li></ul><ul><li>Serialization Discusses the process of converting the state of an object into a form that can be persisted or transported. </li></ul><ul><li>Managed Threading Explains the runtime support for threading and how to program by using various synchronization techniques. </li></ul><ul><li>Writing Serviced Components Describes how to configure and register serviced components to access COM+ services. </li></ul>
  47. 57. More questions? <ul><li>MSDN </li></ul><ul><li>codeproject.com </li></ul><ul><li>StackOverflow.com </li></ul><ul><li>CodePlex.com </li></ul><ul><li>Wikipedia </li></ul><ul><li>MSDN forum </li></ul><ul><li>http://www.cnblogs.com </li></ul><ul><li>google search </li></ul>
  48. 58. DotNet shortcoming <ul><li>YAGNI, too big, too over. </li></ul><ul><li>新名词, Oh No ! ORZ ! </li></ul><ul><li>技术依赖强烈 Silverlight + WCF </li></ul><ul><li>平台及工具 IDE 依赖强烈 </li></ul><ul><li>学习曲线陡峭 </li></ul><ul><li>变化剧烈 WinForm or WPF? Remoting or WCF? </li></ul><ul><li>大而全?还是大而无当? </li></ul>
  49. 59. <ul><li>重点学习” stable” and “Internal” knowledge ,新技术不过是它们的组合包装 . RPC, XML, HTTP, Socket, GC, Dynamic language, FP, UnitTest, CLR, API design, Framework design, String code, RE, DataStructure, Algorithm, Web framework pattern </li></ul><ul><li>适当了解你需要的 . DotNet Framework, WCF, WPF, Asp.net, Silverlight </li></ul><ul><li>保持对技术的好奇心 </li></ul><ul><li>使用新版本 , Win7 + DotNet4 + VS2010 </li></ul>
  50. 60. Learn it, Use it, Share it!

×