コード例 #1
0
ファイル: Matcher.cs プロジェクト: batzen/glob
 public static bool MatchesSegment(this DirectorySegment segment, string pathSegment, bool caseSensitive) =>
 MatchesSubSegment(segment.SubSegments, 0, -1, pathSegment, 0, caseSensitive);
コード例 #2
0
ファイル: Matcher.cs プロジェクト: AdnanDervisevic/glob
 public static bool MatchesSegment(this DirectorySegment segment, string pathSegment) =>
 MatchesSubSegment(segment.SubSegments, 0, pathSegment, 0);