C # Text to Morse Code Converter

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

C # Text to Morse Code Converter- I need help getting the morse code to display in the morseCodeList 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Morse_Code_Chapter__8
//Create a struce for Morse Code 
{
    [DebuggerDisplay("{" + nameof(GetDebuggerDisplay) + "(),nq}")]
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void converterButton_Click(object sender, EventArgs e)
        {// key type = A  and value type = .-
            Dictionary<char, string> letters = new Dictionary<char, string>();
            letters.Add('A', ".-");
            letters.Add('B', "-...");
            letters.Add('C', "-.-.");
            letters.Add('D', "-..");
            letters.Add('E', ".");
            letters.Add('F', "..-.");
            letters.Add('G', "--.");
            letters.Add('H', "....");
            letters.Add('I', "..");
            letters.Add('J', ".---");
            letters.Add('K', "-.-");
            letters.Add('L', ".-..");
            letters.Add('M', "--");
            letters.Add('N', "-.");
            letters.Add('O', "---");
            letters.Add('P', "-...");
            letters.Add('Q', "-.-.");
            letters.Add('R', "-..");
            letters.Add('S', ".");
            letters.Add('T', "..-.");
            letters.Add('U', "--.");
            letters.Add('V', "....");
            letters.Add('W', "..");
            letters.Add('X', ".---");
            letters.Add('Y', "-.-");
            letters.Add('Z', ".-..");
            letters.Add(',', "--..--");//COMMA
            letters.Add('?', "-.");
            letters.Add('1', "--.");
            letters.Add('2', "....");
            letters.Add('3', "..");
            letters.Add('4', ".---");
            letters.Add('5', "-.-");
            letters.Add('6', ".-..");
            letters.Add('7', "--..--");
            letters.Add('8', "-.");
            letters.Add('9', "-.");
            //Display the morse code // Need Help Here please 

//Morse Code Converter and upload a document showing the screen with "Programming is Fun!" //data entered and the morse code conversion displayed. You must separate morse letters and //words so that the Morse Code can be properly interpreted.

            foreach  ( KeyValuePair <char, string> element in letters)
            {
                morseCodeListBox.Items.Add( element.Value);
                morseCodeListBox.Text = letters.ToString();
            }
        }

        private string GetDebuggerDisplay()
        {
            return ToString();
        }
    }
}

 

Expert Solution
Step 1: The details given in the above question is mentioned below as,

In the above question, a statement and code in C# is mentioned 

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Storage Devices
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education