Skip to content

DiGi.Core.IO.Table

github-actions[bot] edited this page Jul 15, 2026 · 2 revisions

DiGi.Core.IO.Table Namespace

Classes

Convert Class

public static class Convert

Inheritance System.Object → Convert

Methods

Convert.ToSystem_String<UTable,UColumn,URow>(this UTable) Method

Converts a serializable Table to its JSON string representation using default options (WARINNG! all table values have to be serializable objects otherwise converted data may be missing).

public static string? ToSystem_String<UTable,UColumn,URow>(this UTable? table)
    where UTable : DiGi.Core.IO.Table.Interfaces.ITable<UColumn, URow>, new()
    where UColumn : DiGi.Core.IO.Table.Interfaces.IColumn
    where URow : DiGi.Core.IO.Table.Interfaces.IRow<URow>;

Type parameters

UTable

The type of the table.

UColumn

The type of the column.

URow

The type of the row.

Parameters

table UTable

The table to be converted to a JSON string.

Returns

System.String
A JSON string representation of the table, or null if the provided table is null.

Clone this wiki locally