c# Base64 인코딩/디코딩 Base64 encode/decode 웹 호출시 또는 연동 작업을 할 경우 Base64로 암호화 또는 복호화해야 할 경우가 있다. 자주 쓰일 것으로 보이니 참조해서 사용을 하면 좋을 것으로 보인다. using System.Text;namespace base64{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string get_Encode_data = Base64Encode(textBox3.Text); txt_en.T.. 더보기 이전 1 다음