Я хотел использовать SmartEnumerable Jon Skeet для того, чтобы перевернуть Regex.Matches
, но это не сработает.SmartEnumerable и Regex.Matches
foreach (var entry in Regex.Matches("one :two", @"(?<!\w):(\w+)").AsSmartEnumerable())
Может кто-нибудь объяснить мне почему? И предложите решение, чтобы оно работало. Благодарю.
Ошибка:
'System.Text.RegularExpressions.MatchCollection' does not contain a definition
for 'AsSmartEnumerable' and no extension method 'AsSmartEnumerable' accepting
a first argument of type 'System.Text.RegularExpressions.MatchCollection' could
be found (are you missing a using directive or an assembly reference?)
Как это работает? –