Town Field Poem:
——— Dream who feel, the water month Build blog. Baiqian tribulation, only know the vicissitudes of the world.
——— today holds the Buddhist language, the technology is boundless willing to learn. Willing to do what you learn, cast a conscience blog.
——————————————————————————————————————————
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 WindowsFormsApplication5
12 {
13 public partial class Form1 : Form
14 {
15 public Form1()
16 {
17 InitializeComponent();
18 }
19
20
21 /// <summary>
22 /// Perform conversion between hexadecimal, defective, cannot convert between signed hexadecimal
23 /// </summary>
24 /// <param name="input">processed data</param>
25 /// <param name="typeOfInput">What is the input data </param>
26 /// <param name="typeOfOutput">What is the output data?</param>
27 /// <returns>returns the converted data</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 //The default is to output lowercase. If you like uppercase, use this line of comments.
40 //textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 2, 16).ToUpper();
41 textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 2, 16);
42 }
43 }
44 }
3 Show
——————————————————————————————————————————
The essence of the blog, in the technical part, more in the town yard a poem.
C # is a good language, worth studying hard.
If the content of the post can be improved, or even the wrong place, please leave a comment, I will try to correct, strive to cast a conscience blog.
Note: This article is only as a scientific research study, if I inadvertently violated your rights and interests, please be sure to timely inform, I will make corrections.
C#winform Base unsigned binary number (integer) to 16 binary (small capitalization version)