专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅

首页 »DotNet » c语言常用函数:c#.net常用函数和方法集 »正文

c语言常用函数:c#.net常用函数和方法集

来源: 发布时间:星期三, 2008年9月10日 浏览:72次 评论:0
1、DateTime数字型
System.DateTimecurrentTime=newSystem.DateTime();
1.1取当前年月日时分秒
currentTime=System.DateTime.Now;
1.2取当前年
int年=currentTime.Year;
1.3取当前月
int月=currentTime.Month;
1.4取当前日
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.Parse(\"常量\")
字符型转换转为32位数字型
3、变量.ToString()
字符型转换转为字符串
12345.ToString(\"n\");//生成12,345.00
12345.ToString(\"C\");//生成¥12,345.00
12345.ToString(\"e\");//生成1.234500e+004
12345.ToString(\"f4\");//生成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.Default.GetBytes(变量)
字码转换转为比特码
如:byte[]bytStr=System.Text.Encoding.Default.GetBytes(str);
然后可得到比特长度:
len=bytStr.Length; [Page]
6、System.Text.StringBuilder(\"\")
字符串相加,(+号是不是也一样?)
如:System.Text.StringBuildersb=newSystem.Text.StringBuilder(\"\");
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();
取远程用户IP地址
9、穿过代理服务器取远程用户真实IP地址:
if(Request.ServerVariables[\"HTTP_VIA\"]!=null){
stringuser_IP=Request.ServerVariables[\"HTTP_X_FORWARDED_FOR\"].ToString();
}else{
stringuser_IP=Request.ServerVariables[\"REMOTE_ADDR\"].ToString();
}

10、Session[\"变量\"];
存取Session值;
如,赋值:Session[\"username\"]=\"小布什\";
取值:ObjectobjName=Session[\"username\"];
StringstrName=objName.ToString();

相关文章

读者评论

  • 共0条 分0页

发表评论

  • 昵称:
  • 内容: