示例#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);