欢迎来到天天文库
浏览记录
ID:13462966
大小:33.00 KB
页数:3页
时间:2018-07-22
《c#.net常用的小函数和方法集》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、c#.net常用的小函数和方法集1、DateTime 数字型 System.DateTimecurrentTime=newSystem.DateTime(); 1.1取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2取当前年 int年=currentTime.Year; 1.3取当前月 int月=currentTime.Month; 1.4取当前日
2、int日=currentTime.Day; 1.5取当前时 int时=currentTime.Hour; 1.6取当前分 int分=currentTime.Minute; 1.7取当前秒 int秒=currentTime.Second; 1.8取当前毫秒 int毫秒=currentTime.Millisecond; (变量可用中文) 2、Int32.Parse(变量) Int32.P
3、arse("常量") 字符型转换转为32位数字型 3、 变量.ToString() 字符型转换转为字符串 12345.ToString("n"); //生成 12,345.00 12345.ToString("C"); //生成¥12,345.00 12345.ToString("e"); //生成1.234500e+004 12345.ToString("f4"); //生成
4、12345.0000 12345.ToString("x"); //生成3039 (16进制) 12345.ToString("p"); //生成1,234,500.00% 4、变量.Length 数字型 取字串长度: 如:stringstr="中国"; intLen=str.Length; //Len是自定义变量,str是求测的字串的变量名 5、System.Text.Encoding.D
5、efault.GetBytes(变量) 字码转换转为比特码 如:byte[]bytStr=System.Text.Encoding.Default.GetBytes(str); 然后可得到比特长度: len=bytStr.Length; 6、System.Text.StringBuilder("") 字符串相加,(+号是不是也一样?) 如:System.Text.StringBuildersb=newSystem.Text.Stri
6、ngBuilder(""); sb.Append("中华"); sb.Append("人民"); sb.Append("共和国"); 7、变量.Substring(参数1,参数2); 截取字串的一部分,参数1为左起始位数,参数2为截取几位。 如:strings1=str.Substring(0,2); 8、Stringuser_IP=Request.ServerVariables["REMOTE_ADDR"].ToString
7、(); 取远程用户IP地址 9、穿过代理服务器取远程用户真实IP地址: if(Request.ServerVariables["HTTP_VIA"]!=null){ string user_IP=Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); }else{ string user_IP=Request.ServerVariables["REMOTE_ADDR"].
8、ToString(); } 10、 Session["变量"]; 存取Session值; 如,赋值: Session["username"]="小布什"; 取值: ObjectobjName=Session["username"]; StringstrName=objName.ToString(); 清空: Session.RemoveA
此文档下载收益归作者所有