AgaHackTools.Main.Default.Pattern.Pattern C# (CSharp) Метод

Pattern() публичный Метод

Creates a new instance of Pattern.
public Pattern ( string description, string pattern, int offseToAdd, bool isOffsetMode, bool rebase, string comment ) : System
description string A description of the pattern being created.
pattern string The patterns Dword formatted text pattern.
offseToAdd int The offset to add to the result found before returning the value.
isOffsetMode bool If we should return the address or offset in the result if this is a xml patternscan.
rebase bool If the address should be rebased to a process module.
comment string Any comments about the pattern. Useful for xml files.
Результат System
        public Pattern(string description, string pattern, int offseToAdd, bool isOffsetMode, bool rebase,
            string comment)
        {
            Description = description;
            TextPattern = pattern;
            OffsetToAdd = offseToAdd;
            IsOffsetMode = isOffsetMode;
            RebaseAddress = rebase;
            Comments = comment;
        }