Skip to content

StringEntry

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

A string extracted from the assembly, along with its source and offset.

public sealed record StringEntry : IEquatable<StringEntry>

ObjectStringEntry

A string extracted from the assembly, along with its source and offset.

Parameters:

  • Offset (Int32): The byte offset or heap handle where the string was found.
  • Value (String): The string content.
  • Source (StringSource): Which string source this entry came from.
public StringEntry(int Offset, string Value, StringSource Source)

The byte offset or heap handle where the string was found.

Returns: Int32

public int Offset { get; init; }

Which string source this entry came from.

Returns: StringSource

public StringSource Source { get; init; }

The string content.

Returns: String

public string Value { get; init; }