Tagged Questions

2
votes
2answers
1k views

How to ignore case in String.replace

string sentence = "We know it contains 'camel' word."; // Camel can be in different cases: string s1 = "CAMEL"; string s2 = "CaMEL"; string s3 = "CAMeL"; // ... string s4 = "Camel"; // ... string s5 = ...
1
vote
4answers
97 views

Finding an item in a List<T>

I have the follow example: public class Commands { public int ID { get; set; } public List<string> Alias { get; set; } } public class UserAccess { public int AccessID { get; set; } ...
1
vote
8answers
172 views

How to use StringComparison for strings in C#?

string body = Selenium.GetBodyText(); if (body.Contains("software", StringComparison.CurrentCultureIgnoreCase)) { //do something } I get a string does not contain a definition for Contains ...
0
votes
2answers
855 views

Linq: using StringComparer with GroupBy/Distinct in query syntax

I have this (XLinq) query and was wondering how to convert it to the query syntax: var grouped = doc.Descendants() .GroupBy(t => t.Element(ns + "GroupingAttr").Value, ...