Table of Contents

Struct DecompilationProgress

Namespace
ICSharpCode.Decompiler
Assembly
ICSharpCode.Decompiler.dll

Information used for (optional) progress reporting by the decompiler.

public struct DecompilationProgress
Inherited Members

Fields

Status

Optional information displayed alongside the progress bar.

public string? Status

Field Value

string

Title

Optional custom title for the operation.

public string? Title

Field Value

string

TotalUnits

The total number of units to process. If set to a value <= 0, an indeterminate progress bar is displayed.

public int TotalUnits

Field Value

int

UnitsCompleted

The number of units currently completed. Should be a positive number.

public int UnitsCompleted

Field Value

int