我们已经写好了,想要的可以和我联系:[email protected]

解决方案 »

  1.   

    看MSDN就可以了,你还不是翻译MSDN
      

  2.   

    对,看msdn最实惠,大而全!
      

  3.   

    就是就是,国内的书不是抄Msdn,就是译的极烂。译的好的比国外要晚两年。
      

  4.   

    如果是侯俊杰写,500RMB我也买!!!
    如果你写的有侯俊杰的水平,我肯出600RMB,其中100是额外奖励!!!
      

  5.   

    我以为,好的书是很重要的。
    MSDN是好的资料,但不是好的书,对初学者尤其如是。
    也许一本好书让你3个月搞定,MSDN也能,但也许要1年,这就是好书和资料的区别。
    再说,不是每个人的英语水平都那么好。很多连中文都看不明白的东西,看英文就更牵牛上树了。
    所以我们需要侯俊杰这样的老师。
    技术好,是高手;技术好,又懂得教人之方,把自己的知识和学习经验和大家share,让我们少走弯路,这才是大师!
    台湾有侯俊杰,大陆又有谁?
      

  6.   

    go to this site. 
    http://www.csharpindex.com/news/filter.aspYou don't need to buy any C# books.
      

  7.   

    I haven't written any books on programming, but I have certainly read a lot in English.  The best book so far about .Net and C Sharp is "C# and .Net platform". It's not published yet, but I read one chapter the author posted on the Internet.  In my view, Chinese translation greatly impeded the understanding of programming concepts.  It's better to read the English version of the books.I am not aware of that people in China can't access some websites in the US, here I post part of the table of contents about the aforementioned web site.using csharpindex.code.C#;  // C# code samples 
     
     As I play with some useful code from around the globe, I'll post them here (with permission). 
    If you have some code that could go here, please email [email protected] with the code, blurb and/or URL. 
    --------------------------------------------------------------------------------NGWS SDK QuickStart Tutorials 
    The Quickstart tutorials when you install the samples have been published to the web here. Downloading samples and playing/running them requires you to have installed the NGWS SDK: See Microsoft Downloads for more details. 
    --------------------------------------------------------------------------------
    Bookstock  by Saurabh Nandu 
    Data Add, Edit, Delete, View using ADO+ on an Access database. 
    --------------------------------------------------------------------------------
    Bommer  by Craig Breakspear 
    C# version of the old bommer game. 
    --------------------------------------------------------------------------------
    CLR Scripting Host   by Don Box 
    CLRScript is a CScript-like shell for loading .NET source files and executing them on the fly. Two versions of the script host are provided in the current release, clrscript.exe, which is the console-based version, and wclrscript, which is the windows-based version. Works with C#, JScript, and Visual Basic.NET 
    --------------------------------------------------------------------------------
    COM Port 
    C# source code file by Justin Harrell to access the serial ports using the win32api. I am sure that it could be modified quite easily to support the streams .net interfaces and other things. In order to use it, you would create a instance of the CommPort class, set the various properties such as BaudRate, Parity etc. then call the Open() method, the do Read() and Write() methods which give and take byte arrays, then when finished do a Close(). 
    --------------------------------------------------------------------------------
    cwTab.zip (128KB)  by Italo S Weiss 
    cwTab is a control written in C# that gives you the ability to add Visual Studio.Net, Excel, and InterDev tabs to any application. The control is fully customizable. 
    --------------------------------------------------------------------------------
    DatePicker for .NET 
    The System.WinForms.DateTimePicker control shipped with .NET is cool but it definitly looks not that nice. The controls used in Outlook is much cooler. So what else can you do other than re-coding them using the .NET framework. The DatePicker is a ComboBox-like control which shows a Calendar when dropped down. The control allows to handle the DateTime.Empty state as "None" selection. The Typeface/Font is configurable. Furthermore, the DatePicker supports a quick popup for month and year selection and highlights DateTime.Today with a nice rectangle. 
    --------------------------------------------------------------------------------
    Digger.net 
    The development of the computer game "Bouldercrash" started in 1988 and is counted as my first real programming project. Besides 16 kilobytes of machine code written for the east german KC85 computer (Z80 processor), the game was equipped with a level editor and 16 kilobytes of compressed level data. Ten years later (June 2000) the world has changed fundamentally (software development is still done using a stupid text editor). Microsoft introduced C# and the .NET platform and I spent some hours creating a .NET version of a KC85 game. The graphics and level data were taken from "Digger" which is another KC85 "Boulderdash" clone. 
    --------------------------------------------------------------------------------
    DNScan 
    A tool to resolve the hostnames of certain ip-ranges. 
    --------------------------------------------------------------------------------
    Duwamish 7  by Microsoft 
    Duwamish 7.0 is a fictitious, distributed, Web-based, e-commerce application. The sample is an end-to-end, business-to-consumer application that emphasizes functionality, scalability, securability, performance, and design methodology. Duwamish 7.0 highlights best practices in the architecture and design of distributed Web-based applications and provides a model for the successful integration of Microsoft .NET Platform technology into an extensible enterprise solution. 
    --------------------------------------------------------------------------------
    First C# Web Server   by Sam Pullara 
    Retrieves files from your hard drive using HTTP. The code has been changed to use Port 8001 as port 80 is being used by existing web services - Internet Information Services (IIS). run HTTP.exe from the command prompt (DOS). In Internet Explorer type the following URL: http://127.0.0.1:8001/C:/Progra~1/NGWSSDK/StartHere.htm Original source: http://www.sampullara.com/http.cs