摘要: 一、值类型的初始化 1 // Demo 1 2 int[] myArray; 3 myArray = new int[4]; 4 5 // Demo 2 6 int[] myArray = new int[4]; 7 8 // Demo 3 9 int[] myArray = new int[]... 阅读全文
posted @ 2014-04-15 12:48 海阔天空XM 阅读(1195) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 4 namespace ConsoleApplication2 5 { 6 public class Account 7 { 8 public string... 阅读全文
posted @ 2014-04-15 10:59 海阔天空XM 阅读(437) 评论(0) 推荐(0)