copying from Blackbaud-SteveBrush https://github.com/Blackbaud-SteveBrush/c-sharp-kata-6
- Create a new .NET Core MVC application by typing dotnet new mvc
- On your app's front-end, create a form with one (1) field that takes a given string.
- When the form is submitted, post the value of the field to a custom API endpoint (on your app's server-side) that converts the string to a Byte Array.
- Return the Byte Array as a JSON object in the response, printing it beneath the form field.
Feel free to use whatever libraries or methods you wish.