標籤:for ons images 部落格 ram value ret window png
鎮場詩:
———大夢誰覺,水月中建部落格。百千磨難,才知世事無常。
———今持佛語,技術無量願學。願盡所學,鑄一良心部落格。
——————————————————————————————————————————
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 /// <summary>21 /// 進行進位之間的轉換,缺陷不能對有小數點的數值進行轉換,位元轉成其它進位數時,必須是無符號類型22 /// </summary>23 /// <param name="input">被處理的資料</param>24 /// <param name="typeOfInput">輸入的資料是多少進位的</param>25 /// <param name="typeOfOutput">輸出的資料是多少進位的</param>26 /// <returns>返迴轉換完成的資料</returns>27 public string ConvertNumber(string input,int typeOfInput,int typeOfOutput)28 {29 int value = Convert.ToInt32(input, typeOfInput);30 string res = Convert.ToString(value, typeOfOutput);31 return res;32 }33 34 private void btn16_8_Click(object sender, EventArgs e)35 {36 textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 16, 8);37 }38 }39 }
3 show
——————————————————————————————————————————
博文的精髓,在技術部分,更在鎮場一詩。
C#是優秀的語言,值得努力學習。
如果博文的內容有可以改進的地方,甚至有錯誤的地方,請留下評論,我一定努力改正,爭取鑄成一個良心部落格。
註:此文僅作為科研學習,如果我無意中侵犯了您的權益,請務必及時告知,我會做出改正。
C#Winform基礎 十六進位數轉換為八位元(整數,無符號)