-3
私はここで助けが必要です。文字列から2番目の文字を取り出すときに間違って何をしますか?私は文字列から文字を取り除こうとしています
// read in a string from the user in the following format:
//pyramid slot number, block letter, whether or not the block should be lit
Console.Write("Enter slot number, block letter & if the block should be lit or not (y/n)");
string csvString = Console.ReadLine();
// find comma location
int commaLocation = csvString.IndexOf(',');
// extract slot number
int slotnumber = int.Parse(csvString.Substring(0,commaLocation));
// Print slot number
Console.WriteLine("Slot number: " + slotnumber);
// extract block letter
*string blockletter = string.ConvertToChar(csvString.Substring(commaLocation + 1));*
// print block letter
Console.WriteLine("Block letter: " + blockletter);
Uはascii値で混乱している必要がありますか? –