C#Winform基础 八进制数转换为十进制数(无符号,整数,正数)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#Winform基础 八进制数转换为十进制数(无符号,整数,正数)相关的知识,希望对你有一定的参考价值。
镇场诗:
———大梦谁觉,水月中建博客。百千磨难,才知世事无常。
———今持佛语,技术无量愿学。愿尽所学,铸一良心博客。
——————————————————————————————————————————
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 //private void btn2_8_Click(object sender, EventArgs e) 21 //{ 22 // textBoxOfOutput.Text= ConvertNumber(textBoxOfInput.Text, 2, 8); 23 //} 24 25 26 /// <summary> 27 /// 进行进制之间的转换,有缺陷不能进行有符号的进制之间的转换 28 /// </summary> 29 /// <param name="input">被处理的数据</param> 30 /// <param name="typeOfInput">输入的数据是多少进制的</param> 31 /// <param name="typeOfOutput">输出的数据是多少进制的</param> 32 /// <returns>返回转换完成的数据</returns> 33 public string ConvertNumber(string input,int typeOfInput,int typeOfOutput) 34 { 35 int value = Convert.ToInt32(input, typeOfInput); 36 string res = Convert.ToString(value, typeOfOutput); 37 38 return res; 39 } 40 41 private void btn8_10_Click(object sender, EventArgs e) 42 { 43 textBoxOfOutput.Text = ConvertNumber(textBoxOfInput.Text, 8, 10); 44 } 45 } 46 }
3 show
——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。
C#是优秀的语言,值得努力学习。
如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取铸成一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。
以上是关于C#Winform基础 八进制数转换为十进制数(无符号,整数,正数)的主要内容,如果未能解决你的问题,请参考以下文章
C#Winform基础 无符号二进制数(整数)转换为十进制数
C#Winform基础 十六进制数转换为八进制数(整数,无符号)
C#Winform基础 八进制数转换为无符号二进制数(整数,正数)
C#Winform基础 无符号二进制数(整数)转换为十六进制(小大写版本)