コード例 #1
0
ファイル: WoxQuery.cs プロジェクト: gissehel/Wox-EasyHelper
 public string GetAllSearchTermsStarting(int index) => (SearchTerms.Length > index) ? string.Join(" ", SearchTerms.Skip(index).ToArray()) : null;
コード例 #2
0
ファイル: WoxQuery.cs プロジェクト: gissehel/Wox-EasyHelper
 public IEnumerable <string> GetSearchTermsStarting(int index) => SearchTerms.Skip(index);