我如何识别用户输入的注释字符串。假设用户输入了
> I am /*not working*/ right now.
所以我想将注释的子字符串> /* not working*/
转换为大写。我怎么能在 c# 中做到这一点。转换不是问题。问题是如何识别评论?在 if 块中做什么?
static void comment(string exp_string)
{
for (int i = 0; i < exp_string.Length; i++)
{
if (exp_string[i] == 47 && exp_string[i + 1] == 42)
}
}