码迷,mamicode.com
首页 > Windows程序 > 详细

C#Winform基础 无符号二进制数(整数)转换为十进制数

时间:2016-10-27 01:39:09      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:bsp   name   进制之间的转换   ons   one   rgs   ret   out   http   

镇场诗:
———大梦谁觉,水月中建博客。百千磨难,才知世事无常。
———今持佛语,技术无量愿学。愿尽所学,铸一良心博客。
——————————————————————————————————————————

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         /// <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 
32             return res;
33         }
34 
35         private void btn2_10_Click(object sender, EventArgs e)
36         {
37             textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 2, 10);
38         }
39     }
40 }

 

 

 

 

3 show

技术分享

 

key function

技术分享

 

 

技术分享

 

 

 

 

——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。
C#是优秀的语言,值得努力学习。
如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取铸成一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。

C#Winform基础 无符号二进制数(整数)转换为十进制数

标签:bsp   name   进制之间的转换   ons   one   rgs   ret   out   http   

原文地址:http://www.cnblogs.com/jinlingzi/p/6002431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!