Table of Contents

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 FunctionIdentifier

The function that is referenced.

Count int

The number of references this function has.

Properties

Count

The number of references this function has.

public int Count { readonly get; set; }

Property Value

int

Function

The function that is referenced.

public FunctionIdentifier? Function { readonly get; set; }

Property Value

FunctionIdentifier