摘要:
恩 阅读全文
摘要:
大作业好烦,烦的我都写不下博客了==。首先要认识到:1.Bugs & errors 应该是由程序自身来解决。2.对于可预测但不可避免的问题使用exception 处理。关于异常处理的顺序如下如果在相应方法中找到处理Exception的代码段,就会调用它对Exception进行处理。如果没有找到会展开... 阅读全文
摘要:
在网上看到的一些教程正则所需要的命名空间是 using System.Text.RegularExpressionsRegex不仅可以用来创建正则表达式,而且提供了许多有用的方法首先是一些语法与匹配字符:基本的语法字符。/d 0-9的数字/D /d的补集(以所以字符为全集,下同),即所有非数字的字符... 阅读全文
摘要:
直接进入我们精彩的内容==接口与抽象类类似,都无法申明变量它们的区别与相似之处:Abstract Class Vs. InterfaceØInterfaces are very similar to abstract classes.ØC# doesn’t allow multiple inheri... 阅读全文
摘要:
上课讲的好多啊根本看不懂;我觉得应该先写一篇windows phone;接下来内容都是我看着视频手打的; //第一块的高度50 ... 阅读全文
摘要:
1.Abstractdoes force all the derived classes toimplementthemethod, but nothing forces thederivedderived classesto implement its own DrawWindow() metho... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;public class Time{ private int Ye... 阅读全文
摘要:
写第一篇博客还有点小激动呢打一段代码压压惊 1 class Program 2 { 3 4 static void Main(string[] args) 5 { 6 7 Console.ForegroundColor = ConsoleColor.Cyan; 8... 阅读全文