using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace text_binary
{
public partial class Form1 : Form
{
string[,] convert = new string[,]
{
{" ","00100000"},//90
{"!","00100001"},//90
//{""",""},ALT+34
{"#","00100011"},
{"$","00100100"},
{"%","00100101"},
{"&","00100110"},
{"'","00100111"},
{"(","00101000"},
{")","00101001"},
{"*","00101010"},
{"+","00101011"},
{",","00101100"},
{"-","00101101"},
{".","0010110"},
{"/","00101111"},
{"0","00110000"},
{"1","00110001"},
{"2","00110010"},
{"3","00110011"},
{"4","00110100"},
{"5","00110101"},
{"6","00110110"},
{"7","00110111"},
{"8","00111000"},
{"9","00111001"},
{":","00111010"},
{";","00111011"},
{"<","00111100"},
{"=","00111101"},
{">","00111110"},
{"?","00111111"},
{"@","01000000"},
{"A","01000001"},
{"B","01000010"},
{"C","01000011"},
{"D","01000100"},
{"E","01000101"},
{"F","01000110"},
{"G","01000111"},
{"H","01001000"},
{"I","01001001"},//40
{"J","01001010"},
{"K","01001011"},
{"L","01001100"},
{"M","01001101"},
{"N","01001110"},
{"O","01001111"},
{"P","01010000"},
{"Q","01010001"},
{"R","01010010"},
{"S","01010011"},//50
{"T","01010100"},
{"U","01010101"},
{"V","01010110"},
{"W","01010111"},
{"X","01011000"},
{"Y","01011001"},
{"Z","01011010"},
{"[","01011011"},
//{"\","0101 1100 "},ALT+92
{"]","01011101"},
{"^","01011110"},
{"_","01011111"},//60
{"`","01100000"},
{"a","01100001"},
{"b","01100010"},
{"c","01100011"},
{"d","01100100"},
{"e","01100101"},
{"f","01100110"},
{"g","01100111"},
{"h","01101000"},
{"i","01101001"},
{"j","01101010"},
{"k","01101011"},
{"l","01101100"},
{"m","01101101"},
{"n","01101110"},
{"o","01101111"},
{"p","01110000"},
{"q","01110001"},
{"r","01110010"},
{"s","01110011"},
{"t","01110100"},
{"u","01110101"},
{"v","01110110"},
{"w","01110111"},
{"x","01111000"},
{"y","01111001"},
{"z","01111010"},
{"{","01111011"},
{"|","01111100"},//90//89
};
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("JoshybaDevelopment", "JoshybaCorp");
}
private void button1_Click(object sender, EventArgs e)
{
string cadfinal = "";
string cadini=textBox1.Text;
int tama = textBox1.Text.Length;
tama--;
for (int a = 0; a <= tama; a++)
{
for (int b = 0; b <= 89; b++)
{
if (cadini.Substring(0, 1) == convert[b, 0])
{
cadfinal += convert[b, 1];
}
}
}
textBox2.Text = cadfinal;
}
}
}