You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below code wont work if the title is compared against a lower case string. It works only if the match is accurate. My equals method with ignorecase didnt work.
where cm.title.ToLower() == "Category:Mammals of Indonesia".ToLower() throws error
var pages = (from cm in wiki.Query.categorymembers()
where cm.title == "Category:Mammals of Indonesia"
orderby cm descending
select cm.title)
.ToEnumerable();
The text was updated successfully, but these errors were encountered:
Below code wont work if the title is compared against a lower case string. It works only if the match is accurate. My equals method with ignorecase didnt work.
where cm.title.ToLower() == "Category:Mammals of Indonesia".ToLower() throws error
var pages = (from cm in wiki.Query.categorymembers()
where cm.title == "Category:Mammals of Indonesia"
orderby cm descending
select cm.title)
.ToEnumerable();
The text was updated successfully, but these errors were encountered: