I write a code :
string strSearch = textBox1.Text;
XDocument xdoc;
List<string> lstItemsForAdd;
lstItemsForAdd = xdoc.Descendants("name")
.Where(item => item.Value.Contains(strSearch))
.Select(item => item.Value)
.Take(5)
.OrderBy(item => item)
.ToList();
Now this code is sensitivity to upper and lower character for find ......
How can I do for search without sensitivity to upper and lower character
but i don't want convert items and strSearch to lower/upper character
so how can I do ?
Thanks and kind regards.
@Matei try for use fromStringComparison.OrdinalIgnoreCasebut in this code can't use ! can i use ? how ? – Sara Ho Feb 17 at 5:52