上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页
摘要: //字符串转换为整数数字 //性能:Int32.TryParse()>Int32.Parse()>Convert.ToInt32() string myString = null; int myInt = 0;... 阅读全文
posted @ 2014-08-18 10:41 linyongqin 阅读(71) 评论(0) 推荐(0) 编辑
摘要: public class ParentClass //public seale class ParentClass 使用seale修饰符实现密封类,不能被继承 { public ParentClass() { Console.WriteL... 阅读全文
posted @ 2014-08-18 10:29 linyongqin 阅读(122) 评论(0) 推荐(0) 编辑
摘要: public abstract class ParentClass { public ParentClass() { Console.WriteLine("父类构造函数"); } public abstrac... 阅读全文
posted @ 2014-08-18 10:26 linyongqin 阅读(71) 评论(0) 推荐(0) 编辑
摘要: interface IFace1 { void Say(); void Hello(); } interface IFace2 { void Say(); void Goodbye(); } /// ... 阅读全文
posted @ 2014-08-18 10:23 linyongqin 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 委托是一种特殊的对象类型,它定义了方法的类型,使得可以将方法当作另一个方法的参数来进行传递。 public delegate void SayDelegate(string name); //定义委托 public class ClassPeople { publ... 阅读全文
posted @ 2014-08-18 10:22 linyongqin 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #warning"警告信息"#error"错误信息"#region代码块Console.WriteLine("代码块内容");#endregion 阅读全文
posted @ 2014-08-18 10:21 linyongqin 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 枚举类型是一种的值类型,它用于声明一组命名的常数。(1)枚举的声明:枚举声明用于声明新的枚举类型。访问修辞符enum 枚举名:基础类型{枚举成员 }基础类型必须能够表示该枚举中定义的所有枚举数值。枚举声明可以显式地声明 byte、sbyte、short、ushort、int、uint、long 或 ... 阅读全文
posted @ 2014-08-18 10:20 linyongqin 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 包含MD5、SHA1、DES加密和解密,Base64编码解码。using System;using System.Web.Security;using System.Security.Cryptography;using System.Text;using System.IO; public cla... 阅读全文
posted @ 2014-08-18 10:19 linyongqin 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 关于在同一个页面中使用Gridview控件的时候发现updaeting事件无法被服务器所响应,看来它的错误报警然后查询了部分资料现在将整理的解决方法总结如下:点击update 事件无法响应原因出在回发或回调参数无效。在配置中使用 或在页面中使用 启用了事件验证。出于安全目的,此功能验证回发或回 ... 阅读全文
posted @ 2014-08-18 10:17 linyongqin 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 测试至诚书院网站,发现kindeditor富文本编辑器不能上传超过4M的文件,最后查看火狐Firebug发现了错误提示“超过了最大请求长度” 阅读全文
posted @ 2014-08-18 10:15 linyongqin 阅读(571) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页