예제 #1
0
파일: Form1.cs 프로젝트: HakopZ/HexEditor
        private MouseEventHandler label_Clicked(Label l)
        {
            var bytes = editor.HexToByteArray(l.Text);

            MessageBox.Show($"{editor.GetDecimal(bytes)}, {editor.GetBinary(bytes)}");

            return(default);