Class PlatformResult

Assembly: redb.Examples.dll

Platform-specific test result (Count, Time, Status).
Used as value in Dictionary for each platform.

public class PlatformResult

Inheritance

ObjectPlatformResult

Properties

Count

Number of objects processed/found.

public int? Count { get; set; }

Status

Status: "OK", "FAIL", or error message.

public string? Status { get; set; }

Time

Execution time in milliseconds.

public int? Time { get; set; }