We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8adbf24 commit 0b8c34bCopy full SHA for 0b8c34b
UE3Plugin/UE3Plugin/Utils/PatternScanner.cs
@@ -11,6 +11,16 @@ internal static class PatternScanner
11
/// <summary>
12
/// Parses a pattern to a byte array.
13
/// </summary>
14
+ /// <example>
15
+ /// Supported pattern structures:
16
+ /// with capture group:
17
+ /// "E8 [....] 48 83 CB FF 45 85 F6"
18
+ /// "E8 (....) 48 83 CB FF 45 85 F6"
19
+ /// without:
20
+ /// "E8 .... 48 83 CB FF 45 85 F6"
21
+ /// "E8 ? ? ? ? 48 83 CB FF 45 85 F6"
22
+ /// "E8 ?? ?? ?? ?? 48 83 CB FF 45 85 F6"
23
+ /// </example>
24
/// <param name="pattern">The pattern.</param>
25
/// <param name="offset">The offset.</param>
26
static List<byte?> ParsePattern(string pattern, out int offset)
0 commit comments