Unpacker.GetNumericCode Method

TegoOS

UnpackerGetNumericCode Method
Get a variable length code matching defined code patterns.

Namespace: Tego.Utils
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public Nullable<ulong> GetNumericCode(
	params string[] codes
)
Public Function GetNumericCode ( 
	ParamArray codes As String()
) As Nullable(Of ULong)
public:
Nullable<unsigned long long> GetNumericCode(
	... array<String^>^ codes
)
member GetNumericCode : 
        codes : string[] -> Nullable<uint64> 

Parameters

codes
Type: SystemString
Patterns to match as string of 0 1 or X (match 0 or 1)

Return Value

Type: NullableUInt64
Value of matched code or null if no match. The return may be ambiguous if several codes have the same end value but a variable numnber of leading zeroes.
See Also