摘要: namespace 二分法{ class Program { static void Main(string[] args) { //二分法前提:数组必须是有序的。 int[] a = new int[] { 3, ... 阅读全文
posted @ 2015-05-22 22:30 XCml 阅读(151) 评论(0) 推荐(0) 编辑
摘要: namespace nameclass2{ class Class2 //方法的重载 { public void Function( string s) { Console.WriteLine(s); } pu... 阅读全文
posted @ 2015-05-22 22:08 XCml 阅读(299) 评论(0) 推荐(0) 编辑
摘要: namespace 面向对象5_22{ class Animal { private string _Type; public string Type { get { return _Type; } s... 阅读全文
posted @ 2015-05-22 10:43 XCml 阅读(456) 评论(0) 推荐(0) 编辑