Skip to content

Instantly share code, notes, and snippets.

@MSPigl
MSPigl / Program.cs
Created March 1, 2019 17:09
Script I wrote to experiment with C#. This script contains methods to convert a string to Morse Code, and play it back using console beeps.
using System;
using System.Timers;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.IO;
namespace CSharpTests