標籤:eve png typeof str 版本 for click ons init
鎮場詩:
———大夢誰覺,水月中建部落格。百千磨難,才知世事無常。
———今持佛語,技術無量願學。願盡所學,鑄一良心部落格。
——————————————————————————————————————————
1 UI
2 code
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Threading.Tasks; 9 using System.Windows.Forms;10 11 namespace WindowsFormsApplication512 {13 public partial class Form1 : Form14 {15 public Form1()16 {17 InitializeComponent();18 }19 20 21 /// <summary>22 /// 進行進位之間的轉換,有缺陷不能進行有符號的進位之間的轉換23 /// </summary>24 /// <param name="input">被處理的資料</param>25 /// <param name="typeOfInput">輸入的資料是多少進位的</param>26 /// <param name="typeOfOutput">輸出的資料是多少進位的</param>27 /// <returns>返迴轉換完成的資料</returns>28 public string ConvertNumber(string input,int typeOfInput,int typeOfOutput)29 {30 int value = Convert.ToInt32(input, typeOfInput);31 string res = Convert.ToString(value, typeOfOutput);32 33 return res;34 }35 36 37 private void btn2_16_Click(object sender, EventArgs e)38 {39 //預設是輸出小寫,你要是喜歡大寫,就用注釋掉的這行代碼40 //textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 2, 16).ToUpper();41 textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 2, 16);42 }43 }44 }
3 show
——————————————————————————————————————————
博文的精髓,在技術部分,更在鎮場一詩。
C#是優秀的語言,值得努力學習。
如果博文的內容有可以改進的地方,甚至有錯誤的地方,請留下評論,我一定努力改正,爭取鑄成一個良心部落格。
註:此文僅作為科研學習,如果我無意中侵犯了您的權益,請務必及時告知,我會做出改正。
C#Winform基礎 無符號位元(整數)轉換為十六進位(小大寫版本)