上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 抽象类:在一个类的前面加上关键字“abstract”此类就成了抽象类。抽象类,不可以作为一个对象来使用。(无法New)一般用它来引用子类对象,abstract class Man { public void shuohua() { Conso... 阅读全文
posted @ 2015-05-28 15:45 Yusarin 阅读(214) 评论(0) 推荐(0) 编辑
摘要: namespace ConsoleApplication5{ public delegate int mydelegate(int a,int b);//定义委托 public class Class1 { public int jiafa(int a, int b)... 阅读全文
posted @ 2015-05-28 15:43 Yusarin 阅读(160) 评论(0) 推荐(0) 编辑
摘要: namespace ConsoleApplication4{ class dongwu { public void youyong() { Console.WriteLine("She was splendid like our flag... 阅读全文
posted @ 2015-05-28 15:36 Yusarin 阅读(132) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication3{ class shengwu { public void shengm... 阅读全文
posted @ 2015-05-24 14:29 Yusarin 阅读(337) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication3{ class shengwu { private string _Name; ... 阅读全文
posted @ 2015-05-24 10:29 Yusarin 阅读(163) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication3{ class Class1 { private string _name; ... 阅读全文
posted @ 2015-05-22 14:53 Yusarin 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 转换前的 :ID name sex num1 tom 男 22 tom 男 33 tom 男 44 tom 男 5这是转换后的结果 ID name sex num1 num2 num3 num41 tom 男 2 ... 阅读全文
posted @ 2015-05-21 08:52 Yusarin 阅读(197) 评论(0) 推荐(0) 编辑
摘要: SQL行转列汇总PIVOT用于将列值旋转为列名(即行转列),在 SQL Server2000可以用聚合函数配合CASE语句实现PIVOT 的一般语法是:PIVOT(聚合函数(列) FOR 列 in (…) )AS P注意:PIVOT、UNPIVOT是SQL Server 2005的语法,使用需修改数... 阅读全文
posted @ 2015-05-21 08:41 Yusarin 阅读(230) 评论(0) 推荐(0) 编辑
摘要: open methodOpens a new window and loads the document specified by a given URL.Navigates the app window to the specified location.打开一个新窗口并加载给定URL指定的文档。... 阅读全文
posted @ 2015-05-20 13:18 Yusarin 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1、内联样式表(和html联合显示,控制精确,但是可重用性差,冗余多) 例:内联样式表 以上就是一个简单的内联样式表,用在中的标签中,相当于style附在标签中,只改变该标签p中的样式和格式。 2、内嵌样式表 例: 这是一个内嵌样式表,就是把 三、选择器 1、单一选择器 1)标签选择器---用标签名... 阅读全文
posted @ 2015-05-18 09:55 Yusarin 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页