黑馬程式設計師 C 中的一些常用函式總結

2021-06-08 00:12:23 字數 1500 閱讀 7912

---------------------- windows phone 7手機開發、net培訓、期待與您交流! ----------------------

c#中常用函式的一些總結

1、datetime 數字型

system.datetime currenttime=new system.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;

(變數可用中文)

1.9 取中文日期顯示——年月日時分

string stry=currenttime.tostring("f"); //不顯示秒

1.10 取中文日期顯示_年月

string strym=currenttime.tostring("y");

1.11 取中文日期顯示_月日

string strmd=currenttime.tostring("m");

1.12 取當前年月日,格式為:2003-9-23

string strymd=currenttime.tostring("d");

1.13 取當前時分,格式為:14:24

string strt=currenttime.tostring("t");

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%

---------------------- windows phone 7手機開發、 .net培訓 期待與您交流! ----------------------

詳情請檢視:

黑馬程式設計師 SQL的一些常用函式

asp.net android io開發s net培訓 期待與您交流!abc 求絕對值。ceiling 捨入到最大整數。ceiling 天花板 floor 捨入到最小整數。floor 地板 round 四捨五入。round 3.1525,2 len 字串長度。len abcd ltrim 去掉左邊的...

黑馬程式設計師 SQL中的一些常見函式

windows phone 7手機開發 net培訓 期待與您交流!在學習sql基礎的時候,我總結了一些常用的sql函式 一 數字函式 1 abs 求絕對值 2 ceiling 捨入到最大的整數 例如 2.87將被捨入為3 1.12將被捨入到2 3.89將被捨入到 3等 3 floor 捨入到最小整數...

黑馬程式設計師 C 中的一些基本操作

target blank asp.net unity開發 target blank net培訓 期待與您交流!1 常用的快捷鍵 ctrl k d 快速對齊 ctrl z 撤銷 ctrl s 儲存 一定要經常儲存!ctrl j 快速彈出智慧型提示 shift end shift home ctrl k...