Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview7_System.Text.RegularExpressions.md « Microsoft.NETCore.App « preview7 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97ac17857ce6ac97f624904b853455074bc734b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# System.Text.RegularExpressions

``` diff
 namespace System.Text.RegularExpressions {
     [NullableAttribute((byte)0)]
     [NullableContextAttribute((byte)1)]
     public class Regex : ISerializable {
+        [NullableContextAttribute((byte)0)]
+        public int Count(ReadOnlySpan<char> input, int startat);
+        [NullableContextAttribute((byte)0)]
+        public Regex.ValueMatchEnumerator EnumerateMatches(ReadOnlySpan<char> input, int startat);
+        [NullableContextAttribute((byte)0)]
+        public bool IsMatch(ReadOnlySpan<char> input, int startat);
     }
 }
```