Exemplo n.º 1
0
        void DoRun()
        {
            var buffer = BinaryProcessor.Parse(BytesTextBox.Text.AsSpan());

            if (buffer != null)
            {
                BytesTextBox.Text = BinaryProcessor.Format(buffer);

                var data = Parse(buffer);

                if (data != null)
                {
                    ILTextBox.Text = MethodFormatter.Format(data);
                }
            }
        }
Exemplo n.º 2
0
        void DoRun()
        {
            var buffer = BinaryProcessor.Parse(BytesTextBox.Text.AsSpan());

            if (buffer != null)
            {
                BytesTextBox.Text = BinaryProcessor.Format(buffer);

                var data = Parse(buffer);

                if (data != null)
                {
                    var sectioned = ShowSectioned.IsChecked ?? false;
                    ILTextBox.Text = MethodFormatter.Format(data, sectioned);
                }
            }
        }