Label Type
Represents a symbolic label that can be a jump target. Each label has its name and a unique identifier. We also associate an address with the label to represent the location of the label in the binary, i.e., the address of the instruction that the label belongs to.
Constructors
| Constructor |
Description
|
|
Instance members
| Instance member |
Description
|
|
Retrieves the instruction address that this label belongs to.
|
|
|
Full Usage:
this.Id
Returns: int
|
Retrieves the ID of the label. The ID is unique for each label and is used to distinguish between different labels.
|
Full Usage:
this.Name
Returns: string
|
Retrieves the symbolic name of the label.
|
B2R2