skip to main
|
skip to sidebar
Tom's Blog
2010年6月5日 星期六
C# -- String.Format ( format to hex )
int x = 10; // hex == 0xA
string s = ""
s = String.Format("{0:X2}",x);
MessageBox.show(s);
== result ==
1 ==> 01
A ==> 0A
B ==> 0B
=====
int x = 10;
string s = x.ToString("X2");
結果也是一樣... 0A
較新的文章
較舊的文章
首頁
訂閱:
文章 (Atom)
追蹤者
網誌存檔
►
2012
(1)
►
9月
(1)
▼
2010
(5)
▼
6月
(1)
C# -- String.Format ( format to hex )
►
5月
(1)
►
4月
(3)
►
2009
(5)
►
12月
(2)
►
10月
(3)
關於我自己
Tom Yeh
檢視我的完整簡介