I am trying to input a string into a C# console app, have it break the string into an array of its characters, and then have it iterate through the array of characters and assign each character an integer corresponding to its alphabetic position(1-26, a-z) and populate a new array with the integers.
The input block up to the array of characters I already have:
string plainText;
Console.Write ("String:");
plainText = Console.ReadLine();
char[] plainTextArray = plainText.ToCharArray();
Not looking for a completed solution, more of a suggested direction to look in for a function(s) to implement.
Thanks.