摘要: declare begin for c in(select sercaid from serca_base where rownum<=100) loop begin update serca_pic set inputusername='shouhou' where sercaid =c.serc 阅读全文
posted @ 2016-12-14 15:45 温柔牛 阅读(315) 评论(0) 推荐(0)
摘要: class Program { public static void Main() { // 创建一个新的测试对象 TestSimpleObject obj = new TestSimpleObject(); Console.WriteLine("Before serialization the o 阅读全文
posted @ 2016-12-14 13:31 温柔牛 阅读(131) 评论(0) 推荐(0)
摘要: class Program { static void Main(string[] args) { string path = @"D:\工资文件.txt"; string path1 = @"D:\工资文件1.txt"; using(FileStream fs=new FileStream(pat 阅读全文
posted @ 2016-12-14 10:12 温柔牛 阅读(129) 评论(0) 推荐(0)
摘要: namespace Homework{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } string pathSource = string.Empty; string pathMB = st 阅读全文
posted @ 2016-12-14 09:00 温柔牛 阅读(212) 评论(0) 推荐(0)
摘要: namespace ReadLineWriteFile{ class Program { static void Main(string[] args) { List<string> listName = new List<string>(); do { Console.WriteLine("等待输 阅读全文
posted @ 2016-12-14 08:56 温柔牛 阅读(313) 评论(0) 推荐(0)
摘要: namespace _03{ class Program { //请编写一个类:ItcastClass,该类中有一个私有字段_names,数据类型为:字符串数组,长度为5,并且有5个默认的姓名。 //要求:为ItcastClass类编写一个索引器,要求该索引器能够通过下标来访问_names中的内容 阅读全文
posted @ 2016-12-07 16:51 温柔牛 阅读(103) 评论(0) 推荐(0)
摘要: namespace _03{ class Program { //请编写一个类:ItcastClass,该类中有一个私有字段_names,数据类型为:字符串数组,长度为5,并且有5个默认的姓名。 //要求:为ItcastClass类编写一个索引器,要求该索引器能够通过下标来访问_names中的内容 阅读全文
posted @ 2016-12-07 13:22 温柔牛 阅读(138) 评论(0) 推荐(0)
摘要: namespace _03{ class Program { //将普通日期格式:“2011年6月4日” 转换成汉字日期格式:“二零一一年六月四日”。暂时不考虑10日、13日、23日等“带十”的问题。 static void Main(string[] args) { string str="201 阅读全文
posted @ 2016-12-07 10:59 温柔牛 阅读(230) 评论(0) 推荐(0)
摘要: namespace _03{ class Program { //有如下字符串:【"患者:“大夫,我咳嗽得很重。” 大夫:“你多大年记?” 患者:“七十五岁。” 大夫:“二十岁咳嗽吗”患者:“不咳嗽。” 大夫:“四十岁时咳嗽吗?” 患者:“也不咳嗽。” 大夫:“那现在不咳嗽,还要等到什么时咳嗽?”" 阅读全文
posted @ 2016-12-06 11:45 温柔牛 阅读(340) 评论(0) 推荐(0)
摘要: C# 如何关联键盘按钮 (KeyChar/KeyCode值 KeyPress/KeyDown事件 区别) http://blog.csdn.net/cc198877/article/details/8510283 阅读全文
posted @ 2016-12-02 10:10 温柔牛 阅读(243) 评论(0) 推荐(0)