Exchange Managed API: How do I retrieve all elements that end with specific substring
I need to find all calendar items that end with a开发者_StackOverflow社区 defined substring. I know there's a SearchFilter "ContainsSubstring" but nothing like "EndsWithSubstring".
you can try bool string.EndsWith(string suffix)
精彩评论