Table of Contents

Method ToString

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

ToString()

Returns a JSON-formatted string representing the extracted value.

public override string ToString()

Returns

string

A JSON fragment such as "Hello", 42, null, or a nested object/array structure. Returns "null" when no value was extracted.

Examples

Console.WriteLine(element.ToString()); // e.g. "John Doe"
Share