Method ToString
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
ToString()
Returns a JSON representation of the extracted value.
public override string ToString()
Returns
- string
A JSON-formatted string representing the extracted value. If no value has been extracted, returns an empty string.
Examples
// Output the JSON representation of the extracted value
Console.WriteLine(resultElement.ToString());
// Example output: {"Name":"John Doe","Age":30}
Remarks
This method provides a convenient way to visualize the extracted data in JSON format.