摘要: 在介绍本章之前,我们先看一下C#的编译过程,如下图所示:图片摘自:http://www.developingthefuture.net/compilation-process-and-jit-compiler/The process of compilation in a managed envir... 阅读全文
posted @ 2015-10-30 13:50 gavinsun 阅读(169) 评论(0) 推荐(0) 编辑
摘要: C#是面向对象编程语言,语法和JAVA非常相似。接下来让我们看一下C#的Hello world。1 //001.cs2 using System;3 public class Hello4 {5 public static void Main()6 {7 System... 阅读全文
posted @ 2015-10-30 13:32 gavinsun 阅读(344) 评论(0) 推荐(0) 编辑
摘要: InterfacesThere are a number of situations in software engineering when it is important for disparate groups of programmers to agree to a "contract" t... 阅读全文
posted @ 2015-10-30 10:13 gavinsun 阅读(846) 评论(1) 推荐(0) 编辑