13 references to EndsWith
PresentationBuildTasks (1)
Framework\System\Windows\SystemResourceKey.cs (1)
374
if (memberName.
EndsWith
("Key", false, TypeConverterHelper.InvariantEnglishUS))
PresentationFramework (1)
src\Framework\System\Windows\SystemResourceKey.cs (1)
374
if (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))
528
if (suffixWord.
EndsWith
("y", true, this.Culture))
546
if (suffixWord.
EndsWith
("o", true, this.Culture) || suffixWord.
EndsWith
("s", true, this.Culture))
551
if (suffixWord.
EndsWith
("x", true, this.Culture))
740
if (suffixWord.
EndsWith
("ies", true, this.Culture))
777
if (suffixWord.
EndsWith
("oes", true, this.Culture))
782
if (suffixWord.
EndsWith
("ss", true, this.Culture))
787
if (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)
21
return suffixes.Any(s => word.
EndsWith
(s, true, culture));