我想创建一个翻转字符串顺序的函数
例子:"hi" => "ih"
这是我迄今为止得出的代码:
public static string Flip(this string Str)
{
char[] chararray = Str.ToCharArray();
string output = "";
chararray. //i dont know what methoud should be used to execute action
return output;
}
问题是,我想知道 lambda 表达式中当前选择的对象的索引是什么 ex: xin(x => x ) indexOf不是一个选项,因为可以有多个来自同一类型的字符
我怎样才能知道索引?
编辑:我不想知道如何反转字符串,我想知道如何在 lambda 表达式中查找对象的索引
扬帆大鱼
相关分类