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); } } }
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); } } }