C#
chengbo1983
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c#.net常用函数和方法集
1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 in转载 2004-11-28 08:34:00 · 879 阅读 · 0 评论 -
C# 及其特性
www.chinacs.net 2001-8-28 中文C#技术站1.C#是一种从C++和Java继承而来的,简单的,现代的,面向对象的语言.2.它的目标是综合Visual Basic高产和C++底层高效的特性.3.它是Microsoft Visual Studio7.0 的一部分.4.Visual studio支持Vb,VC++,C++,Vbscript,Jscript.所有这些语言提供转载 2004-11-27 20:45:00 · 1111 阅读 · 0 评论 -
C#中一些字符串操作的常用用法
//获得汉字的区位码 byte[] array = new byte[2]; array = System.Text.Encoding.Default.GetBytes("啊");int i1 = (short)(array[0] - /0); int i2 = (short)(array[1] - /0);//unicode解码方式下的汉字码 array = System转载 2004-11-28 08:36:00 · 823 阅读 · 0 评论
分享