Struct FunctionCountPair
- Namespace
- AsmResolver.Symbols.Pdb.Records
- Assembly
- AsmResolver.Symbols.Pdb.dll
Provides information about a function and the amount of times it is referenced.
public record struct FunctionCountPair : IEquatable<FunctionCountPair>
- Implements
- Inherited Members
Constructors
FunctionCountPair(FunctionIdentifier?, int)
Provides information about a function and the amount of times it is referenced.
public FunctionCountPair(FunctionIdentifier? Function, int Count)
Parameters
Function
FunctionIdentifierThe function that is referenced.
Count
intThe number of references this function has.
Properties
Count
The number of references this function has.
public int Count { readonly get; set; }
Property Value
Function
The function that is referenced.
public FunctionIdentifier? Function { readonly get; set; }