Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データのマトリックスをシミュレートする必要があり、List<List <string >>. を使用してIndexOf、リストのリスト内の要素を検索します。
List<List <string >>
IndexOf
Matrix[0].IndexOf('Search');
しかし、一種のIndexOfinを作ることは可能Matrixですか?
Matrix
あなたは次のようなものを求めているかもしれません:
例
public void MatrixIndexOf(string content) { var result = matrix.Select((value, index)=> new { _i = index, _str = value }).Where(x=>x._str.Contains(content)); }
この後resultは匿名タイプで、_iはインデックスです。
result
_i