13 references to EndsWith
PresentationBuildTasks (1)
Framework\System\Windows\SystemResourceKey.cs (1)
374if (memberName.EndsWith("Key", false, TypeConverterHelper.InvariantEnglishUS))
PresentationFramework (1)
src\Framework\System\Windows\SystemResourceKey.cs (1)
374if (memberName.EndsWith("Key", false, TypeConverterHelper.InvariantEnglishUS))
System.Data.Entity.Design (11)
System\Data\Entity\Design\PluralizationService\EnglishPluralizationService.cs (10)
506(s) => s.EndsWith("deaf", true, this.Culture) ? s : s.Remove(s.Length - 1, 1) + "ves", this.Culture, out newSuffixWord)) 528if (suffixWord.EndsWith("y", true, this.Culture)) 546if (suffixWord.EndsWith("o", true, this.Culture) || suffixWord.EndsWith("s", true, this.Culture)) 551if (suffixWord.EndsWith("x", true, this.Culture)) 740if (suffixWord.EndsWith("ies", true, this.Culture)) 777if (suffixWord.EndsWith("oes", true, this.Culture)) 782if (suffixWord.EndsWith("ss", true, this.Culture)) 787if (suffixWord.EndsWith("s", true, this.Culture)) 866|| (!word.ToLower(this.Culture).Equals(word) && word.EndsWith("ese", false, this.Culture))
System\Data\Entity\Design\PluralizationService\PluralizationServiceUtil.cs (1)
21return suffixes.Any(s => word.EndsWith(s, true, culture));