-
Notifications
You must be signed in to change notification settings - Fork 0
DiGi.Core.IO.Table
github-actions[bot] edited this page Jul 15, 2026
·
2 revisions
public static class ConvertInheritance System.Object → Convert
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>;UTable
The type of the table.
UColumn
The type of the column.
URow
The type of the row.
table UTable
The table to be converted to a JSON string.
System.String
A JSON string representation of the table, or null if the provided table is null.