linq获取字符串数组的索引

linq获取字符串数组的索引

本文介绍了linq获取字符串数组的索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

var _Col_Name_lst =(来自_hdr [0]中的DataColumn x .Table.Columns

选择x.ColumnName)。ToArray();



_Col_Name_lst -----这有一个字符串数组的集合



喜欢



0 - EMl



1 - AZEER



2 - VISTA



--------



在上面的集合中,我需要EMI或者AZEER或VISTA的数组索引,无论我传递给哪一个linq。



所以在上面的集合中使用linq ---_Col_Name_lst



i需要任何索引值EMI或者AZEER或VISTA,无论我通过哪个

解决方案



var _Col_Name_lst = (from DataColumn x in _hdr[0].Table.Columns
select x.ColumnName).ToArray();

_Col_Name_lst ----- This has a collection of string array

like

0 - EMl

1 - AZEER

2 - VISTA

--------

Here in above collection, i require array index of EMI or AZEER or VISTA whichever i pass to a linq.

so using linq on above collection --- "_Col_Name_lst "

i require index of any values EMI or AZEER or VISTA whichever i pass

解决方案



这篇关于linq获取字符串数组的索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 11:19