Browse Source

fix #692: In v2.3.2, `Search for t:TypeName, m:Member...` feature doesn't work: based on #693; thanks to neolithos

pull/703/head
Siegfried Pammer 9 years ago
parent
commit
5f8ff82cfd
  1. 1
      ILSpy/SearchStrategies.cs

1
ILSpy/SearchStrategies.cs

@ -38,6 +38,7 @@ namespace ICSharpCode.ILSpy @@ -38,6 +38,7 @@ namespace ICSharpCode.ILSpy
for (int i = 0; i < searchTerm.Length; ++i) {
// How to handle overlapping matches?
var term = searchTerm[i];
if (string.IsNullOrEmpty(term)) continue;
switch (term[0])
{
case '+': // must contain

Loading…
Cancel
Save